fix(web): suppress hydration mismatch at root html to avoid React 418 on production (extensions/content-scripts DOM changes)
This commit is contained in:
parent
a18536dd5f
commit
7a7154775c
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ export default async function RootLayout({
|
||||||
children: React.ReactNode
|
children: React.ReactNode
|
||||||
}>) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="pt-BR" className="h-full">
|
<html lang="pt-BR" className="h-full" suppressHydrationWarning>
|
||||||
<body className="min-h-screen bg-background text-foreground antialiased">
|
<body className="min-h-screen bg-background text-foreground antialiased">
|
||||||
<ConvexClientProvider>
|
<ConvexClientProvider>
|
||||||
<AuthProvider>
|
<AuthProvider>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue