Replies: 1 comment 1 reply
-
For client-side errors, export const ErrorBoundary = () => {
const error = useRouteError();
const eventId = captureRemixErrorBoundaryError(error);
return <div>
<span>Sentry Event Id: {eventId}</span>
</div>;
} Current implementation of |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
To avoid duplication, the issue is described here: remix-run/remix#8454
It is not clear whether it is something that Sentry can help with or something that Remix would need to change (or both).
Beta Was this translation helpful? Give feedback.
All reactions