fix(web-admin): suppress hydration warning from i18n language detection

This commit is contained in:
hailin 2026-03-07 07:56:56 -08:00
parent 71ea80972d
commit 550813c772
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ export default function RootLayout({
}) {
return (
<html lang="en" className="dark">
<body className={inter.className}>
<body className={inter.className} suppressHydrationWarning>
<Providers>{children}</Providers>
</body>
</html>