You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pendingComponent is expected to be displayed in the "/" route for 2 seconds (the duration of the awaited promise in loader), however, the browser is in a pending state and the first response from the server is after the loader has finished
this is working as expected. the loader will block the server response. if you dont want this, use deferred loading or even better, stream the data using useSuspenseQuery.
Which project does this relate to?
Start
Describe the bug
The
pendingComponent
is not displayed when the route is in a pending state (through theloader
method)Your Example Website or App
https://github.com/ammarmbe/tanstack-start-pending-component
Steps to Reproduce the Bug or Issue
npm install
npm run dev
Expected behavior
The
pendingComponent
is expected to be displayed in the"/"
route for 2 seconds (the duration of the awaited promise inloader
), however, the browser is in a pending state and the first response from the server is after the loader has finishedScreenshots or Videos
No response
Platform
Additional context
deployed at https://tanstack-start-pending-component.vercel.app/
The text was updated successfully, but these errors were encountered: