aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/index.ts')
-rw-r--r--src/stores/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/index.ts b/src/stores/index.ts
index 8836f2892..f9927d9a3 100644
--- a/src/stores/index.ts
+++ b/src/stores/index.ts
@@ -57,7 +57,7 @@ export default (
57 57
58 // Initialize all stores 58 // Initialize all stores
59 for (const name of Object.keys(stores)) { 59 for (const name of Object.keys(stores)) {
60 if (stores[name] && stores[name].initialize) { 60 if (stores[name]?.initialize) {
61 stores[name].initialize(); 61 stores[name].initialize();
62 } 62 }
63 } 63 }