Skip to content

Commit

Permalink
fix(Explorer): wrap GuildInfiniteScroll in Suspense
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Jul 12, 2024
1 parent 5ca8cd4 commit 7c56133
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/explorer/_components/Explorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ export const Explorer = () => {
<GuildSearchBar />
</Suspense>
</div>
<GuildInfiniteScroll />
<Suspense>
<GuildInfiniteScroll />
</Suspense>
</section>
</>
)
Expand Down

0 comments on commit 7c56133

Please sign in to comment.