Next.js Discord

Discord Forum

Loading.tsx isn't showing up

Unanswered
Ragdoll posted this in #help-forum
Open in Discord
RagdollOP
I am facing this issue - Loading.tsx isn't showing up, the dealy is dealying for the whole page including the header.

IssuePage.tsx
const IssuesPage = async () => {
  const issues = await prisma.issue.findMany();
 await delay(5000);

  return <>Stuff</>

Here delay is a node package.

0 Replies