We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a921d commit dc74c3bCopy full SHA for dc74c3b
apps/login/src/app/layout.tsx
@@ -1,5 +1,6 @@
1
import type { Metadata } from "next";
2
import { Fira_Code, Inter } from "next/font/google";
3
+import { Suspense } from "react";
4
5
import "./globals.css";
6
import { Providers } from "./providers";
@@ -30,7 +31,9 @@ export default function RootLayout({
30
31
<body
32
className={`${sansFont.variable} ${monoFont.variable} h-full w-full font-sans antialiased`}
33
>
- <Providers>{children}</Providers>
34
+ <Providers>
35
+ <Suspense>{children}</Suspense>
36
+ </Providers>
37
</body>
38
</html>
39
);
0 commit comments