Sentry: actually, filter out all AbortErrors
This commit is contained in:
parent
f8f8b4f2b9
commit
c311ac4f80
1 changed files with 2 additions and 3 deletions
|
@ -20,9 +20,8 @@ export const start = (): void => {
|
|||
'AxiosError',
|
||||
// sw.js couldn't be downloaded.
|
||||
'Failed to update a ServiceWorker for scope',
|
||||
// The user decided not to share (eg `navigator.share()`).
|
||||
// This exception is useful for a try/catch flow, but not for error monitoring.
|
||||
'AbortError: Share canceled',
|
||||
// Useful for try/catch, useless as a Sentry error.
|
||||
'AbortError',
|
||||
],
|
||||
denyUrls: [
|
||||
// Browser extensions.
|
||||
|
|
Loading…
Reference in a new issue