Explorar o código

ignore resize observer error sent to sentry (#1222)

Klaudiusz Dembler %!s(int64=3) %!d(string=hai) anos
pai
achega
b49cba18d7
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      src/utils/logs/sentry.ts

+ 4 - 1
src/utils/logs/sentry.ts

@@ -25,7 +25,10 @@ class _SentryLogger {
   initialize(DSN: string) {
     Sentry.init({
       dsn: DSN,
-      ignoreErrors: ['ResizeObserver loop limit exceeded'],
+      ignoreErrors: [
+        'ResizeObserver loop limit exceeded',
+        'ResizeObserver loop completed with undelivered notifications',
+      ],
     })
     this.initialized = true
   }