diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2024-01-24 09:50:37 -0500 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2024-01-24 09:50:37 -0500 |
| commit | 7956156d705297ba7c372577bb19c09517bbd444 (patch) | |
| tree | 5920890307cba2698ebf30fd4381fc26d3492d76 /src/app/groups/layout.tsx | |
| parent | 2f58e466da05a058096a2bdc7ee581dbebe7a508 (diff) | |
Upgrade Next.js to 14.1.0
Diffstat (limited to 'src/app/groups/layout.tsx')
| -rw-r--r-- | src/app/groups/layout.tsx | 6 |
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> ) } |
