From 5c74c6306da7f9e5bcfbea397d80e397235b0bbe Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Thu, 15 Jan 2026 12:07:50 +0300 Subject: [PATCH] Add MetaMask error patterns to Sentry ignore list --- web/src/lib/sentry.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/src/lib/sentry.ts b/web/src/lib/sentry.ts index 26576a9f..83784511 100644 --- a/web/src/lib/sentry.ts +++ b/web/src/lib/sentry.ts @@ -57,11 +57,15 @@ export const initSentry = () => { // Ignore common non-critical errors ignoreErrors: [ - // Browser extensions + // Browser extensions (MetaMask, etc.) 'top.GLOBALS', 'canvas.contentDocument', 'MyApp_RemoveAllHighlights', 'atomicFindClose', + 'ObjectMultiplex', + 'StreamMiddleware', + 'malformed chunk', + 'Unknown response id', // Network errors that are expected 'NetworkError', 'Failed to fetch',