Browse Source

ignore resize observer error sent to sentry (#1222)

Klaudiusz Dembler 3 năm trước cách đây
mục cha
commit
b49cba18d7
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  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
   }