fix(web): suppress hydration mismatch at root html to avoid React 418 on production (extensions/content-scripts DOM changes)

This commit is contained in:
codex-bot 2025-10-22 10:16:59 -03:00
parent a18536dd5f
commit 7a7154775c

View file

@ -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>