-
Notifications
You must be signed in to change notification settings - Fork 1
Restructure documentation into protocol-first architecture with clean URLs #217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
58b311e
9478e05
08cdcc8
cc26a98
599bb11
82a1f85
7139e3d
11422fe
9f4fae1
2009b94
8cf2590
a1ae0de
26602d5
3fcf0b4
3b108ae
d8efa59
e900340
b523b77
371774c
b3d7d70
e5577b2
9cd2682
f418a14
95b5c26
1ad80b8
c2df200
6974830
313dae9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,5 +18,9 @@ export const metadata: Metadata = { | |
| export default function RootLayout({ children }: { children: ReactNode }) { | ||
| // Root layout is only used for redirects with middleware | ||
| // The actual layout is in [lang]/layout.tsx | ||
| return children; | ||
| return ( | ||
| <html lang="en" suppressHydrationWarning> | ||
| <body>{children}</body> | ||
| </html> | ||
| ); | ||
|
Comment on lines
+21
to
+25
|
||
| } | ||
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using
as anybypasses TypeScript's type checking. Consider defining a proper type for the components object or using a more specific type assertion likeas MDXComponentsto maintain type safety while resolving the compilation error.