From 2d996f2c14a813edc2faf331a2d82876a88e0325 Mon Sep 17 00:00:00 2001 From: tamaina Date: Mon, 16 Aug 2021 13:29:38 +0900 Subject: [PATCH] fix lint --- src/client/scripts/idb-proxy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/scripts/idb-proxy.ts b/src/client/scripts/idb-proxy.ts index 23c7ee559d..21c4dcff65 100644 --- a/src/client/scripts/idb-proxy.ts +++ b/src/client/scripts/idb-proxy.ts @@ -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;