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 1a0341e commit 49d7e59Copy full SHA for 49d7e59
sample/src/App.tsx
@@ -27,8 +27,8 @@ Sentry.init({
27
// Replace the example DSN below with your own DSN:
28
dsn: SENTRY_INTERNAL_DSN,
29
debug: true,
30
- beforeSend: (e, hint) => {
31
- console.log('Event beforeSend:', e, 'hint:', hint);
+ beforeSend: (e: Sentry.Event) => {
+ console.log('Event beforeSend:', e);
32
return e;
33
},
34
// This will be called with a boolean `didCallNativeInit` when the native SDK has been contacted.
0 commit comments