From 8426cbbfc711a192b77ae638164b7099024b3267 Mon Sep 17 00:00:00 2001 From: Ioan Moldovan Date: Thu, 3 Jul 2025 21:10:23 -0300 Subject: [PATCH] feat: ignore resize observer loop error --- extension/js/common/platform/catch.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extension/js/common/platform/catch.ts b/extension/js/common/platform/catch.ts index c1e1b520d11..95e80e51ed4 100644 --- a/extension/js/common/platform/catch.ts +++ b/extension/js/common/platform/catch.ts @@ -33,6 +33,8 @@ export class Catch { 'ResizeObserver loop limit exceeded', // https://github.com/FlowCrypt/flowcrypt-browser/issues/5280 '400 when POST-ing https://flowcrypt.com/attester/welcome-message string: email,pubkey -> This key does not appear valid', + // https://github.com/FlowCrypt/flowcrypt-browser/issues/6030 + 'ResizeObserver loop completed with undelivered notifications', ]; public static rewrapErr(e: unknown, message: string): Error {