aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/lib/TypedStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/lib/TypedStore.ts')
-rw-r--r--src/stores/lib/TypedStore.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/lib/TypedStore.ts b/src/stores/lib/TypedStore.ts
index 0a669e669..8bae529ba 100644
--- a/src/stores/lib/TypedStore.ts
+++ b/src/stores/lib/TypedStore.ts
@@ -41,7 +41,7 @@ export default abstract class TypedStore {
41 this.actions = actions; 41 this.actions = actions;
42 } 42 }
43 43
44 registerReactions(reactions: { (r: IReactionPublic): void }[]): void { 44 registerReactions(reactions: ((r: IReactionPublic) => void)[]): void {
45 for (const reaction of reactions) { 45 for (const reaction of reactions) {
46 this._reactions.push(new Reaction(reaction)); 46 this._reactions.push(new Reaction(reaction));
47 } 47 }