aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/FeaturesStore.js')
-rw-r--r--src/stores/FeaturesStore.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/FeaturesStore.js b/src/stores/FeaturesStore.js
index cf28b6bec..bffcb01bc 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -19,6 +19,7 @@ import settingsWS from '../features/settingsWS';
19import serviceLimit from '../features/serviceLimit'; 19import serviceLimit from '../features/serviceLimit';
20import communityRecipes from '../features/communityRecipes'; 20import communityRecipes from '../features/communityRecipes';
21import todos from '../features/todos'; 21import todos from '../features/todos';
22import planSelection from '../features/planSelection';
22 23
23import { DEFAULT_FEATURES_CONFIG } from '../config'; 24import { DEFAULT_FEATURES_CONFIG } from '../config';
24 25
@@ -81,5 +82,6 @@ export default class FeaturesStore extends Store {
81 serviceLimit(this.stores, this.actions); 82 serviceLimit(this.stores, this.actions);
82 communityRecipes(this.stores, this.actions); 83 communityRecipes(this.stores, this.actions);
83 todos(this.stores, this.actions); 84 todos(this.stores, this.actions);
85 planSelection(this.stores, this.actions);
84 } 86 }
85} 87}