diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-05-12 22:34:26 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-05-12 22:34:26 +0100 |
| commit | ffe99a7490325366e230786c8bb89616c1a2dcb4 (patch) | |
| tree | a117fb09cf9cb655b4972c6dedc3523835554a3e /communities/red-right-hand/174bg.net/src/app | |
| parent | ce8d26dac4d8a3ba6f239f915d4336b2a4c35ed4 (diff) | |
| download | unnamed-group-ffe99a7490325366e230786c8bb89616c1a2dcb4.tar unnamed-group-ffe99a7490325366e230786c8bb89616c1a2dcb4.tar.gz unnamed-group-ffe99a7490325366e230786c8bb89616c1a2dcb4.tar.bz2 unnamed-group-ffe99a7490325366e230786c8bb89616c1a2dcb4.tar.xz unnamed-group-ffe99a7490325366e230786c8bb89616c1a2dcb4.zip | |
useSearchParams() should be wrapped in a suspense boundary
Diffstat (limited to 'communities/red-right-hand/174bg.net/src/app')
| -rw-r--r-- | communities/red-right-hand/174bg.net/src/app/layout.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/communities/red-right-hand/174bg.net/src/app/layout.js b/communities/red-right-hand/174bg.net/src/app/layout.js index 165be68..4535f5e 100644 --- a/communities/red-right-hand/174bg.net/src/app/layout.js +++ b/communities/red-right-hand/174bg.net/src/app/layout.js @@ -31,7 +31,9 @@ export default function RootLayout({ children }) { > <body className="min-h-full flex flex-col"> <ClerkProvider> - <AuthHeader /> + <Suspense> + <AuthHeader /> + </Suspense> <TerminalOverlay /> {children} </ClerkProvider> |
