We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d8efa59 + b523b77 commit 371774cCopy full SHA for 371774c
apps/docs/app/layout.tsx
@@ -18,5 +18,9 @@ export const metadata: Metadata = {
18
export default function RootLayout({ children }: { children: ReactNode }) {
19
// Root layout is only used for redirects with middleware
20
// The actual layout is in [lang]/layout.tsx
21
- return children;
+ return (
22
+ <html lang="en" suppressHydrationWarning>
23
+ <body>{children}</body>
24
+ </html>
25
+ );
26
}
0 commit comments