aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.ts
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-14 18:20:26 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-14 18:20:26 +0200
commitc27972c12b2d0dba2aee9e3dcffadcf7806a9afd (patch)
tree46fcfe261ae55e6faab604e9c75f94f6ffe326ee /src/stores/index.ts
parentchore: upgrade 'electron-builder' to '22.14.5' to fix upstream issues. (#2068) (diff)
downloadferdium-app-c27972c12b2d0dba2aee9e3dcffadcf7806a9afd.tar.gz
ferdium-app-c27972c12b2d0dba2aee9e3dcffadcf7806a9afd.tar.zst
ferdium-app-c27972c12b2d0dba2aee9e3dcffadcf7806a9afd.zip
chore: remove all code related to news (#2069)
Diffstat (limited to 'src/stores/index.ts')
-rw-r--r--src/stores/index.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stores/index.ts b/src/stores/index.ts
index 1760ddfa2..6ad898d85 100644
--- a/src/stores/index.ts
+++ b/src/stores/index.ts
@@ -6,7 +6,6 @@ import ServicesStore from './ServicesStore';
6import RecipesStore from './RecipesStore'; 6import RecipesStore from './RecipesStore';
7import RecipePreviewsStore from './RecipePreviewsStore'; 7import RecipePreviewsStore from './RecipePreviewsStore';
8import UIStore from './UIStore'; 8import UIStore from './UIStore';
9import NewsStore from './NewsStore';
10import RequestStore from './RequestStore'; 9import RequestStore from './RequestStore';
11import GlobalErrorStore from './GlobalErrorStore'; 10import GlobalErrorStore from './GlobalErrorStore';
12import { workspaceStore } from '../features/workspaces'; 11import { workspaceStore } from '../features/workspaces';
@@ -25,7 +24,6 @@ export default (api, actions, router) => {
25 recipes: new RecipesStore(stores, api, actions), 24 recipes: new RecipesStore(stores, api, actions),
26 recipePreviews: new RecipePreviewsStore(stores, api, actions), 25 recipePreviews: new RecipePreviewsStore(stores, api, actions),
27 ui: new UIStore(stores, api, actions), 26 ui: new UIStore(stores, api, actions),
28 news: new NewsStore(stores, api, actions),
29 requests: new RequestStore(stores, api, actions), 27 requests: new RequestStore(stores, api, actions),
30 globalError: new GlobalErrorStore(stores, api, actions), 28 globalError: new GlobalErrorStore(stores, api, actions),
31 workspaces: workspaceStore, 29 workspaces: workspaceStore,