aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2020-01-31 21:03:49 +0100
committerLibravatar vantezzen <hello@vantezzen.io>2020-01-31 21:03:49 +0100
commitd54ceb639862788c053e21f217ca39ac36003db6 (patch)
tree40bfd8bb6a8a85c222f9c67d7dd862a835394e80 /src/stores/FeaturesStore.js
parentAdd publish debug log option (diff)
parentMerge branch 'develop' of https://github.com/getferdi/ferdi into develop (diff)
downloadferdium-app-d54ceb639862788c053e21f217ca39ac36003db6.tar.gz
ferdium-app-d54ceb639862788c053e21f217ca39ac36003db6.tar.zst
ferdium-app-d54ceb639862788c053e21f217ca39ac36003db6.zip
Merge branch 'develop' into publish-debug
Diffstat (limited to 'src/stores/FeaturesStore.js')
-rw-r--r--src/stores/FeaturesStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/FeaturesStore.js b/src/stores/FeaturesStore.js
index aa9fa4062..8a279bc8a 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -21,7 +21,7 @@ import settingsWS from '../features/settingsWS';
21import serviceLimit from '../features/serviceLimit'; 21import serviceLimit from '../features/serviceLimit';
22import communityRecipes from '../features/communityRecipes'; 22import communityRecipes from '../features/communityRecipes';
23import todos from '../features/todos'; 23import todos from '../features/todos';
24import accentColor from '../features/accentColor'; 24import appearance from '../features/appearance';
25import planSelection from '../features/planSelection'; 25import planSelection from '../features/planSelection';
26import trialStatusBar from '../features/trialStatusBar'; 26import trialStatusBar from '../features/trialStatusBar';
27 27
@@ -92,7 +92,7 @@ export default class FeaturesStore extends Store {
92 serviceLimit(this.stores, this.actions); 92 serviceLimit(this.stores, this.actions);
93 communityRecipes(this.stores, this.actions); 93 communityRecipes(this.stores, this.actions);
94 todos(this.stores, this.actions); 94 todos(this.stores, this.actions);
95 accentColor(this.stores, this.actions); 95 appearance(this.stores, this.actions);
96 planSelection(this.stores, this.actions); 96 planSelection(this.stores, this.actions);
97 trialStatusBar(this.stores, this.actions); 97 trialStatusBar(this.stores, this.actions);
98 } 98 }