mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
chore(editor): Exclude codemirror range errors from Sentry (#12646)
This commit is contained in:
parent
c7c122f917
commit
0b0f532367
|
@ -8,6 +8,9 @@ const ignoredErrors = [
|
|||
{ instanceof: ResponseError, message: /ECONNREFUSED/ },
|
||||
{ instanceof: ResponseError, message: "Can't connect to n8n." },
|
||||
{ instanceof: ResponseError, message: 'Unauthorized' },
|
||||
{ instanceof: RangeError, message: /Position \d+ is out of range for changeset of length \d+/ },
|
||||
{ instanceof: RangeError, message: /Invalid change range \d+ to \d+/ },
|
||||
{ instanceof: RangeError, message: /Selection points outside of document$/ },
|
||||
{ instanceof: Error, message: /ResizeObserver/ },
|
||||
] as const;
|
||||
|
||||
|
|
Loading…
Reference in a new issue