From 083c4f8d1390e58c202c4e73ff5d0833b076e159 Mon Sep 17 00:00:00 2001 From: r2dev2 Date: Tue, 21 Mar 2023 16:52:30 -0700 Subject: [PATCH] =?UTF-8?q?fix=20oopsie=20woopsie=20=F0=9F=90=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/web-ext-stores.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web-ext-stores.ts b/src/web-ext-stores.ts index 1d85714..ef4e61f 100644 --- a/src/web-ext-stores.ts +++ b/src/web-ext-stores.ts @@ -78,7 +78,7 @@ export function webExtStores(backend: IStorageBackend = storageMV2()): WebExtSto result == null || !result.syncFromExternal ) return; - result.setRaw(change.newValue).catch((e) => console.error(e)); + result.setRaw(change.newValue); }); });