fix: suppress hydration warning on html for theme class
This commit is contained in:
parent
a8b5b6cf02
commit
b40d7bcf04
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue