diff --git a/packages/editor-ui/src/plugins/sentry.ts b/packages/editor-ui/src/plugins/sentry.ts index 7347459fb5..dac25cd05c 100644 --- a/packages/editor-ui/src/plugins/sentry.ts +++ b/packages/editor-ui/src/plugins/sentry.ts @@ -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;