fix: get themes to work
This commit is contained in:
parent
87fc401898
commit
c4e23c67ab
1 changed files with 3 additions and 3 deletions
|
|
@ -16,9 +16,9 @@ export default function RootLayout({
|
|||
return (
|
||||
<html lang="en" className="h-full antialiased" suppressHydrationWarning>
|
||||
<body className="min-h-full flex flex-col">
|
||||
<NextIntlClientProvider>
|
||||
<ThemeProvider>{children}</ThemeProvider>
|
||||
</NextIntlClientProvider>
|
||||
<ThemeProvider attribute="class" enableSystem defaultTheme="system">
|
||||
<NextIntlClientProvider>{children}</NextIntlClientProvider>
|
||||
</ThemeProvider>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue