From d119832a1ff0188c7f87439130bce93d47c71171 Mon Sep 17 00:00:00 2001 From: casperiv0 <53900565+casperiv0@users.noreply.github.com> Date: Sat, 21 Oct 2023 08:12:23 +0200 Subject: [PATCH] chore: ignore certain errors --- apps/client/sentry.client.config.ts | 2 ++ apps/client/sentry.edge.config.ts | 2 ++ apps/client/sentry.server.config.ts | 2 ++ 3 files changed, 6 insertions(+) diff --git a/apps/client/sentry.client.config.ts b/apps/client/sentry.client.config.ts index 514edfcb9..f134c0072 100644 --- a/apps/client/sentry.client.config.ts +++ b/apps/client/sentry.client.config.ts @@ -22,6 +22,8 @@ init({ "Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.", "The object can not be found here.", /AbortError/gi, + /ResizeObserver/gi, + "ResizeObserver loop completed with undelivered notifications.", ], integrations(integrations) { return [...integrations, new BrowserTracing(), new Replay()]; diff --git a/apps/client/sentry.edge.config.ts b/apps/client/sentry.edge.config.ts index 9c6c0c3fb..a200a9bf2 100644 --- a/apps/client/sentry.edge.config.ts +++ b/apps/client/sentry.edge.config.ts @@ -19,5 +19,7 @@ init({ "Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.", "The object can not be found here.", /AbortError/gi, + /ResizeObserver/gi, + "ResizeObserver loop completed with undelivered notifications.", ], }); diff --git a/apps/client/sentry.server.config.ts b/apps/client/sentry.server.config.ts index aa12faf8c..cfe733a40 100644 --- a/apps/client/sentry.server.config.ts +++ b/apps/client/sentry.server.config.ts @@ -20,5 +20,7 @@ init({ "Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.", "The object can not be found here.", /AbortError/gi, + /ResizeObserver/gi, + "ResizeObserver loop completed with undelivered notifications.", ], });