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 9740d078f..dd4827221 100644
--- a/src/stores/FeaturesStore.js
+++ b/src/stores/FeaturesStore.js
@@ -4,6 +4,7 @@ import Store from './lib/Store';
4import CachedRequest from './lib/CachedRequest'; 4import CachedRequest from './lib/CachedRequest';
5 5
6import delayApp from '../features/delayApp'; 6import delayApp from '../features/delayApp';
7import spellchecker from '../features/spellchecker';
7 8
8export default class FeaturesStore extends Store { 9export default class FeaturesStore extends Store {
9 @observable defaultFeaturesRequest = new CachedRequest(this.api.features, 'default'); 10 @observable defaultFeaturesRequest = new CachedRequest(this.api.features, 'default');
@@ -36,5 +37,6 @@ export default class FeaturesStore extends Store {
36 37
37 _enableFeatures() { 38 _enableFeatures() {
38 delayApp(this.stores, this.actions); 39 delayApp(this.stores, this.actions);
40 spellchecker(this.stores, this.actions);
39 } 41 }
40} 42}