Skip to content

Commit 49d7e59

Browse files
chore(sample): Remove EventHint log from sample app before send (#2741)
1 parent 1a0341e commit 49d7e59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sample/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Sentry.init({
2727
// Replace the example DSN below with your own DSN:
2828
dsn: SENTRY_INTERNAL_DSN,
2929
debug: true,
30-
beforeSend: (e, hint) => {
31-
console.log('Event beforeSend:', e, 'hint:', hint);
30+
beforeSend: (e: Sentry.Event) => {
31+
console.log('Event beforeSend:', e);
3232
return e;
3333
},
3434
// This will be called with a boolean `didCallNativeInit` when the native SDK has been contacted.

0 commit comments

Comments
 (0)