We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c7216a commit 019fe3bCopy full SHA for 019fe3b
docs/platforms/react-native/integrations/default.mdx
@@ -87,6 +87,7 @@ Here's a code example of how this could be implemented:
87
await fetchMovieReviews(movie);
88
} catch (e) {
89
const fetchError = new Error(`Failed to fetch reviews for: ${movie}`);
90
+ // @ts-expect-error cause is not exposed on default error class.
91
fetchError.cause = e;
92
Sentry.captureException(fetchError);
93
}
0 commit comments