chore(editor): Stop reporting ResponseError: Unauthorized error to Sentry (no-changelog) (#11744)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-11-15 14:00:21 +01:00
committed by GitHub
parent f1ca8c128b
commit bd924c7194

View File

@@ -7,6 +7,7 @@ const ignoredErrors = [
{ instanceof: AxiosError },
{ instanceof: ResponseError, message: /ECONNREFUSED/ },
{ instanceof: ResponseError, message: "Can't connect to n8n." },
{ instanceof: ResponseError, message: 'Unauthorized' },
{ instanceof: Error, message: /ResizeObserver/ },
] as const;