Skip to content

Commit

Permalink
fix(visualization): build error
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli committed Jun 13, 2024
1 parent 7cefdaf commit 26603e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function Page() {
const authorId = 0
return (
<ErrorBoundary fallback={({ error }) => <>{error.message}</>}>
<Suspense fallback={<Spinner />}>
<Suspense clientOnly fallback={<Spinner />}>
<SuspenseInfiniteQuery
queryKey={['users', authorId]}
queryFn={({ pageParam }) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Page() {

return (
<ErrorBoundary fallback={({ error }) => <>{error.message}</>}>
<Suspense fallback={<Spinner />}>
<Suspense clientOnly fallback={<Spinner />}>
<div>
<SuspenseQuery
queryKey={['users', userId]}
Expand Down

0 comments on commit 26603e6

Please sign in to comment.