Skip to content

Commit

Permalink
feat: enable Sentry user feedback (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Dec 23, 2023
1 parent 09129ae commit f4af00d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/plugins/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ export async function setupSentry(app: App, router: Router) {
}),
// Feedback handling not working in our server, so we disable it for now.
// new Sentry.Feedback(),
new Sentry.Replay()
new Sentry.Replay(),
new Sentry.Feedback({
colorScheme: 'light'
})
],
// Set tracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.
Expand Down

0 comments on commit f4af00d

Please sign in to comment.