From ea36d15ff73fb3d0515feffbb4d52a11f21bb065 Mon Sep 17 00:00:00 2001 From: GuillaumeSD Date: Mon, 21 Apr 2025 16:10:54 +0200 Subject: [PATCH] fix : sentry ignore filtered errors --- sentry.client.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sentry.client.config.ts b/sentry.client.config.ts index 517f7e8..4b2de13 100644 --- a/sentry.client.config.ts +++ b/sentry.client.config.ts @@ -18,5 +18,9 @@ if ( replaysSessionSampleRate: 0, replaysOnErrorSampleRate: 1.0, debug: false, + ignoreErrors: [ + "AbortError: The user aborted a request.", + "Failed to fetch", + ], }); }