Merge branch 'migrate-accounts-to-idb' into swn

This commit is contained in:
tamaina
2021-08-20 14:27:51 +09:00
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ let idbAvailable = typeof window !== 'undefined' ? !!window.indexedDB : true;
if (idbAvailable) {
try {
await createStore('keyval-store', 'keyval')
await createStore('keyval-store', 'keyval');
} catch (e) {
console.error('idb open error', e);
idbAvailable = false;