aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/lib/Store.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/lib/Store.js')
-rw-r--r--src/stores/lib/Store.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stores/lib/Store.js b/src/stores/lib/Store.js
index b39070ce8..a867c3a46 100644
--- a/src/stores/lib/Store.js
+++ b/src/stores/lib/Store.js
@@ -28,7 +28,8 @@ export default class Store {
28 } 28 }
29 29
30 registerReactions(reactions) { 30 registerReactions(reactions) {
31 for (const reaction of reactions) this._reactions.push(new Reaction(reaction)); 31 for (const reaction of reactions)
32 this._reactions.push(new Reaction(reaction));
32 } 33 }
33 34
34 setup() {} 35 setup() {}