fix(storybook): fix storybook rendering with i18n library

This commit is contained in:
Gabe Kangas
2025-01-14 21:19:23 -08:00
parent e02f6dbc20
commit 70282761d3
4 changed files with 26 additions and 1 deletions
+8 -1
View File
@@ -5,7 +5,14 @@ import { Footer } from './Footer';
const meta = {
title: 'owncast/Layout/Footer',
component: Footer,
parameters: {},
parameters: {
nextjs: {
appDirectory: true,
navigation: {
searchParams: {},
},
},
},
} satisfies Meta<typeof Footer>;
export default meta;