diff --git a/app/layout.tsx b/app/layout.tsx index 1e87a09..9c11945 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -19,7 +19,7 @@ export default async function RootLayout({ children }: { readonly children: Reac diff --git a/app/page.tsx b/app/page.tsx index 10f9fdc..3be09a6 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -24,7 +24,10 @@ export async function generateMetadata({ params }: PageProps): Promise export default function HomePage() { return (
- +
diff --git a/eslint.config.mjs b/eslint.config.mjs index fe4bbb3..e4785b1 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -41,6 +41,7 @@ export default [ }, { usePrettierrc: false }, ], + 'react/forbid-component-props': 0, }, }, ];