Sentry: actually, filter out all AbortErrors

This commit is contained in:
Alex Gleason 2022-08-25 14:17:23 -05:00
parent f8f8b4f2b9
commit c311ac4f80
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -20,9 +20,8 @@ export const start = (): void => {
'AxiosError', 'AxiosError',
// sw.js couldn't be downloaded. // sw.js couldn't be downloaded.
'Failed to update a ServiceWorker for scope', 'Failed to update a ServiceWorker for scope',
// The user decided not to share (eg `navigator.share()`). // Useful for try/catch, useless as a Sentry error.
// This exception is useful for a try/catch flow, but not for error monitoring. 'AbortError',
'AbortError: Share canceled',
], ],
denyUrls: [ denyUrls: [
// Browser extensions. // Browser extensions.