summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-05-10 16:31:00 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-05-10 16:31:00 +0900
commit57c3ea3dbeff25b2805b7aea18a720ca68e8f66c (patch)
tree872e25463704408332cfb87eb052417a94fd3889 /src
parentchore(lint): Add semicolon rule (diff)
downloadsharkey-57c3ea3dbeff25b2805b7aea18a720ca68e8f66c.tar.gz
sharkey-57c3ea3dbeff25b2805b7aea18a720ca68e8f66c.tar.bz2
sharkey-57c3ea3dbeff25b2805b7aea18a720ca68e8f66c.zip
chore(lint): Add missing semicolon
Diffstat (limited to 'src')
-rw-r--r--src/client/init.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/init.ts b/src/client/init.ts
index 29fc219740..500092061a 100644
--- a/src/client/init.ts
+++ b/src/client/init.ts
@@ -146,7 +146,7 @@ os.init(async () => {
} else if (e.key === 'i') {
location.reload();
}
- }, false)
+ }, false);
store.watch(state => state.device.darkMode, darkMode => {
import('./theme').then(({ builtinThemes }) => {