Skip to content

Commit

Permalink
fix oopsie woopsie 🐵
Browse files Browse the repository at this point in the history
  • Loading branch information
r2dev2 committed Mar 21, 2023
1 parent de9c7bf commit 083c4f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web-ext-stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
});

Expand Down

0 comments on commit 083c4f8

Please sign in to comment.