Skip to content

Commit adaf3f5

Browse files
committed
fix: add suppressHydrationWarning to RootLayout for improved hydration handling
1 parent b48522e commit adaf3f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function RootLayout({
1313
children: React.ReactNode;
1414
}>) {
1515
return (
16-
<html lang="en" className="h-full antialiased">
16+
<html lang="en" className="h-full antialiased" suppressHydrationWarning>
1717
<body className="min-h-full flex flex-col font-[Helvetica,Arial,sans-serif]">
1818
<ThemeProvider attribute="class" defaultTheme="light" forcedTheme="light">
1919
{children}

0 commit comments

Comments
 (0)