Remove Sentry user feedback modal display

Removed user feedback modal display for Sentry events.
This commit is contained in:
Enno Gelhaus 2025-09-20 14:02:45 +02:00 committed by GitHub
parent ce8017a3c6
commit 7f9a5c39c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 5 deletions

View File

@ -49,11 +49,6 @@ export const initializeSentryBasic = (environment: string, dsn: string, extensio
}
}
// Show user feedback modal if not filtered
if (event.event_id) {
Sentry.showReportDialog({ eventId: event.event_id });
}
return event; // Send the event to Sentry
},
});