From c760b101e970530f0e9d8bbe0dedaf8b30c65a37 Mon Sep 17 00:00:00 2001 From: lovegaoshi <106490582+lovegaoshi@users.noreply.github.com> Date: Mon, 1 Apr 2024 13:48:25 -0700 Subject: [PATCH] chore: sentry ignore --- src/App.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index bae7c0af..76fcf68c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -21,6 +21,12 @@ if (TRACKING) { Sentry.init({ dsn: 'https://2662633cce5b4b9f99da6b395b0a471f@o4505087864799232.ingest.us.sentry.io/4505087866044416', tracesSampleRate: 0, + ignoreErrors: [ + 'Network request failed', + 'Download interrupted.', + /Failed to delete /, + 'Cannot convert undefined value to object', + ], }); }