From c3872ef47347d0515da0915674dfe9c340487dfd Mon Sep 17 00:00:00 2001 From: majakomel Date: Mon, 15 Apr 2024 13:34:36 +0200 Subject: [PATCH] Ignore __gCrWeb errors --- sentry.client.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sentry.client.config.js b/sentry.client.config.js index 53100719..91e97ae3 100644 --- a/sentry.client.config.js +++ b/sentry.client.config.js @@ -10,7 +10,8 @@ Sentry.init({ dsn: SENTRY_DSN, ignoreErrors: [ /^ResizeObserver loop limit exceeded$/, - /^ResizeObserver loop completed with undelivered notifications.$/ + /^ResizeObserver loop completed with undelivered notifications.$/, + "__gCrWeb" ], // Adjust this value in production, or use tracesSampler for greater control tracesSampleRate: 1,