-
Notifications
You must be signed in to change notification settings - Fork 28.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rendering Suspense in server component throws React error 419 in production builds #51581
Comments
got same issue, no problems on dev, prod builds fine but gives the 419 console log. next 13.5.1, component with useSearchParams wrapped in Suspense |
Confirming the issue is there in Next 13.5.6, using canonical @PostHog App Dir example from their docs. For some reason it doesn't happen locally with |
Note that this error still occurs on Next.js 14.0.3 (PS: I have opened an issue at Posthog, but according to what you say, it is rather a problem with next.js PostHog/posthog-js#872) |
Still busted in 14.0.4. |
I have the same problem trying to use Segments |
If this is how your Posthog file looks
just wrap
|
I have the same problem with
|
Related PostHog/posthog-js#872 Steps to reproduce
Expected Behavior There is no errors in console Actual Behavior
|
Verify canary release
Provide environment information
λ npx next info Operating System: Platform: darwin Arch: x64 Version: Darwin Kernel Version 22.5.0: Mon Apr 24 20:51:50 PDT 2023; root:xnu-8796.121.2~5/RELEASE_X86_64 Binaries: Node: 19.6.0 npm: 9.4.0 Yarn: N/A pnpm: N/A Relevant packages: next: 13.4.7-canary.1 eslint-config-next: 13.4.6 react: 18.2.0 react-dom: 18.2.0 typescript: 5.1.3
Which area(s) of Next.js are affected? (leave empty if unsure)
No response
Link to the code that reproduces this issue or a replay of the bug
https://codesandbox.io/p/sandbox/fervent-snowflake-9fzx7p?file=%2Fapp%2Flayout.tsx%3A9%2C19
To Reproduce
Implement the NavigationEvents component exactly as it's described in the docs into a new Next app. It causes errors unless I unwrap the Suspense boundary.
Describe the Bug
I'm using the NavigationEvents component straight out of the docs.
When I wrap the component in a Suspense boundary, as is recommended, it throws a hydration error. In prod builds, it seems to work fine, but it throws React error #419 silently in the console. If I take away the Suspense boundary, then everything seems to work fine and I get no errors. However, the docs seem to imply that the parenting server component is going to rerender on search param updates if I
useSearchParams
in a static render without the boundary. I would want the NavigationEvents to be in the layout, and this would mean that all search param changes trigger full rerenders.Expected Behavior
Suspense boundaries should not throw hydrations errors in dev or silent React errors in prod.
Which browser are you using? (if relevant)
Chrome 114.0.5735.133 (Official Build) (x86_64)
How are you deploying your application? (if relevant)
Local & Vercel
The text was updated successfully, but these errors were encountered: