Skip to content

Commit

Permalink
feat: enable user feedback after fixing it on the server (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Jan 3, 2024
1 parent 5306196 commit a6c436f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions frontend/src/plugins/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ export async function setupSentry(app: App, router: Router) {
new Sentry.BrowserTracing({
routingInstrumentation: Sentry.vueRouterInstrumentation(router)
}),
// Feedback handling not working in our server, so we disable it for now.
// new Sentry.Feedback(),
new Sentry.Replay()
// new Sentry.Feedback({
// colorScheme: 'light'
// })
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 a6c436f

Please sign in to comment.