Skip to content

Commit

Permalink
chore: Add missing Suspense boundary
Browse files Browse the repository at this point in the history
  • Loading branch information
franky47 committed Dec 27, 2024
1 parent 41c63b6 commit 9d60098
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/e2e/next/src/app/app/push/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { SearchParams } from 'nuqs/server'
import { Suspense } from 'react'
import { Client } from './client'
import { searchParamsCache } from './searchParams'

Expand All @@ -13,7 +14,9 @@ export default async function Page({
<p>
Server side: <span id="server-side">{server}</span>
</p>
<Client />
<Suspense>
<Client />
</Suspense>
</>
)
}

0 comments on commit 9d60098

Please sign in to comment.