We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sentry Saas (sentry.io)
@sentry/remix
7.9.0
1.6.7
No response
root.tsx
return json({ok: true})
App
useLoaderData
the data returned by useLoaderData in the root component should be the same data returned in the loader ({ok: true})
loader
{ok: true}
the data returned by useLoaderData looks like this:
{ 'sentry-trace': 'xxxxxx, 'baggage': 'xxxxxx' }
and the actual data that is sent from the loader is lost
The text was updated successfully, but these errors were encountered:
Duplicate of #5539, will be fixed by #5539! We'll be releasing the fix in the next 1-2 days! cc @onurtemizkan
Sorry, something went wrong.
thanks @AbhiPrasad! didn't realise that was the same issue
No branches or pull requests
Is there an existing issue for this?
How do you use Sentry?
Sentry Saas (sentry.io)
Which package are you using?
@sentry/remix
SDK Version
7.9.0
Framework Version
1.6.7
Link to Sentry event
No response
Steps to Reproduce
root.tsx
and return some data, for examplereturn json({ok: true})
App
and use theuseLoaderData
hook to access the data from the loaderExpected Result
the data returned by
useLoaderData
in the root component should be the same data returned in theloader
(
{ok: true}
)Actual Result
the data returned by
useLoaderData
looks like this:and the actual data that is sent from the loader is lost
The text was updated successfully, but these errors were encountered: