aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-07 13:47:00 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-07 13:47:00 +0100
commit0cdc165ace53019371fc126d8d76817f1f2ed027 (patch)
tree1c98c3e31258c29ff2f49b748b9df16a892f66e6 /src/stores/index.js
parentBump version to b20 (diff)
downloadferdium-app-0cdc165ace53019371fc126d8d76817f1f2ed027.tar.gz
ferdium-app-0cdc165ace53019371fc126d8d76817f1f2ed027.tar.zst
ferdium-app-0cdc165ace53019371fc126d8d76817f1f2ed027.zip
fix(Spellchecker): Dictionaries are now part of app instead of dynamic download
Diffstat (limited to 'src/stores/index.js')
-rw-r--r--src/stores/index.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stores/index.js b/src/stores/index.js
index f547d0a7a..96b844c95 100644
--- a/src/stores/index.js
+++ b/src/stores/index.js
@@ -9,7 +9,6 @@ import UIStore from './UIStore';
9import PaymentStore from './PaymentStore'; 9import PaymentStore from './PaymentStore';
10import NewsStore from './NewsStore'; 10import NewsStore from './NewsStore';
11import RequestStore from './RequestStore'; 11import RequestStore from './RequestStore';
12import DictionaryStore from './DictionaryStore';
13import GlobalErrorStore from './GlobalErrorStore'; 12import GlobalErrorStore from './GlobalErrorStore';
14 13
15export default (api, actions, router) => { 14export default (api, actions, router) => {
@@ -27,7 +26,6 @@ export default (api, actions, router) => {
27 payment: new PaymentStore(stores, api, actions), 26 payment: new PaymentStore(stores, api, actions),
28 news: new NewsStore(stores, api, actions), 27 news: new NewsStore(stores, api, actions),
29 requests: new RequestStore(stores, api, actions), 28 requests: new RequestStore(stores, api, actions),
30 dictionary: new DictionaryStore(stores, api, actions),
31 globalError: new GlobalErrorStore(stores, api, actions), 29 globalError: new GlobalErrorStore(stores, api, actions),
32 }); 30 });
33 // Initialize all stores 31 // Initialize all stores