aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/layout.tsx
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2024-01-24 09:50:37 -0500
committerSebastien Castiel <sebastien@castiel.me>2024-01-24 09:50:37 -0500
commit7956156d705297ba7c372577bb19c09517bbd444 (patch)
tree5920890307cba2698ebf30fd4381fc26d3492d76 /src/app/groups/layout.tsx
parent2f58e466da05a058096a2bdc7ee581dbebe7a508 (diff)
Upgrade Next.js to 14.1.0
Diffstat (limited to 'src/app/groups/layout.tsx')
-rw-r--r--src/app/groups/layout.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/groups/layout.tsx b/src/app/groups/layout.tsx
index 3b8b10e..02f136b 100644
--- a/src/app/groups/layout.tsx
+++ b/src/app/groups/layout.tsx
@@ -1,11 +1,11 @@
-import { PropsWithChildren } from 'react'
+import { PropsWithChildren, Suspense } from 'react'
export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
return (
- <>
+ <Suspense>
<main className="flex-1 max-w-screen-md w-full mx-auto px-4 py-6 flex flex-col gap-6">
{children}
</main>
- </>
+ </Suspense>
)
}