aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/FeaturesStore.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-11-28 17:07:32 +0100
committerLibravatar vantezzen <hello@vantezzen.io>2019-11-28 17:07:32 +0100
commit6eb6f75223d3eebcf31b33897d72f07fe93f02ad (patch)
tree572e681b535ba102dd10df9096b6e0ae72e0506b /src/stores/FeaturesStore.js
parentDisable artifacts storage on AppVeyor (diff)
downloadferdium-app-6eb6f75223d3eebcf31b33897d72f07fe93f02ad.tar.gz
ferdium-app-6eb6f75223d3eebcf31b33897d72f07fe93f02ad.tar.zst
ferdium-app-6eb6f75223d3eebcf31b33897d72f07fe93f02ad.zip
Add appearance feature handler
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 780cde3a7..eec4678b9 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -20,7 +20,7 @@ import settingsWS from '../features/settingsWS';
20import serviceLimit from '../features/serviceLimit'; 20import serviceLimit from '../features/serviceLimit';
21import communityRecipes from '../features/communityRecipes'; 21import communityRecipes from '../features/communityRecipes';
22import todos from '../features/todos'; 22import todos from '../features/todos';
23import accentColor from '../features/accentColor'; 23import appearance from '../features/appearance';
24import planSelection from '../features/planSelection'; 24import planSelection from '../features/planSelection';
25import trialStatusBar from '../features/trialStatusBar'; 25import trialStatusBar from '../features/trialStatusBar';
26 26
@@ -90,7 +90,7 @@ export default class FeaturesStore extends Store {
90 serviceLimit(this.stores, this.actions); 90 serviceLimit(this.stores, this.actions);
91 communityRecipes(this.stores, this.actions); 91 communityRecipes(this.stores, this.actions);
92 todos(this.stores, this.actions); 92 todos(this.stores, this.actions);
93 accentColor(this.stores, this.actions); 93 appearance(this.stores, this.actions);
94 planSelection(this.stores, this.actions); 94 planSelection(this.stores, this.actions);
95 trialStatusBar(this.stores, this.actions); 95 trialStatusBar(this.stores, this.actions);
96 } 96 }