fix: suppress hydration warning on html for theme class

This commit is contained in:
codebanditssss 2026-06-03 22:15:52 +05:30
parent a8b5b6cf02
commit b40d7bcf04
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<html lang="en" suppressHydrationWarning>
<body>{children}</body>
</html>
);