aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/communityRecipes/store.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/communityRecipes/store.ts')
-rw-r--r--src/features/communityRecipes/store.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/features/communityRecipes/store.ts b/src/features/communityRecipes/store.ts
index afd7d0f01..73eaae8b4 100644
--- a/src/features/communityRecipes/store.ts
+++ b/src/features/communityRecipes/store.ts
@@ -1,8 +1,7 @@
1import { computed } from 'mobx'; 1import { computed } from 'mobx';
2import { FeatureStore } from '../utils/FeatureStore'; 2import { FeatureStore } from '../utils/FeatureStore';
3 3
4// TODO: Go back to 'debug' from 'console.log' when https://github.com/electron/electron/issues/31689 is fixed 4const debug = require('../../preload-safe-debug')('Ferdium:feature:communityRecipes:store');
5// const debug = require('debug')('Ferdium:feature:communityRecipes:store');
6 5
7export class CommunityRecipesStore extends FeatureStore { 6export class CommunityRecipesStore extends FeatureStore {
8 stores: any; 7 stores: any;
@@ -10,13 +9,13 @@ export class CommunityRecipesStore extends FeatureStore {
10 actions: any; 9 actions: any;
11 10
12 start(stores: any, actions: any) { 11 start(stores: any, actions: any) {
13 console.log('start'); 12 debug('start');
14 this.stores = stores; 13 this.stores = stores;
15 this.actions = actions; 14 this.actions = actions;
16 } 15 }
17 16
18 stop() { 17 stop() {
19 console.log('stop'); 18 debug('stop');
20 super.stop(); 19 super.stop();
21 } 20 }
22 21