diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f2dfb9c..9850b31 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -17,14 +17,17 @@ export const metadata: Metadata = { }, }; +// Suppress extension-caused hydration warnings +const suppressHydrationWarning = true; + export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( - - + + {children}