Next.js Discord

Discord Forum

Suspense doesn't seem to be working in my current situation.

Answered
Nelson posted this in #help-forum
Open in Discord
I have the code:

[Source code](https://github.com/tszhong0411/honghong.me/blob/907233761ae4ec0d7a39bd41f9acafd36ecb3f18/apps/web/src/app/blog/%5Bslug%5D/page.tsx#L137-L139)
<React.Suspense fallback={<CommentsLoading />}>
  <Comments slug={slug} />
</React.Suspense>


But when I visit my blog post page from the homepage without caching, it needs a couple of seconds to load and it is blocking the UI, although I used `<Suspense />.

Unfortunately, I can't create a minimal reproduction of it.
Answered by joulev
same problem here, idk why either. i [opened an issue](https://github.com/vercel/next.js/issues/55864) but i think there are other issues on this exact bug as well.

i believe ppr is used to handle this kind of situation
View full answer

2 Replies