aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-09-05 12:06:53 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-09-05 12:06:53 +0200
commitf42ef7dc88323cd8f5af20a83fb8534aa78804b9 (patch)
tree702d98e1bcebdc6a888e7f08eb39f3a6836e5155 /src
parentpolish todo preview text (diff)
downloadferdium-app-f42ef7dc88323cd8f5af20a83fb8534aa78804b9.tar.gz
ferdium-app-f42ef7dc88323cd8f5af20a83fb8534aa78804b9.tar.zst
ferdium-app-f42ef7dc88323cd8f5af20a83fb8534aa78804b9.zip
remove console logs
Diffstat (limited to 'src')
-rw-r--r--src/features/delayApp/Component.js1
-rw-r--r--src/features/todos/store.js1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/features/delayApp/Component.js b/src/features/delayApp/Component.js
index de5653f04..6344edb89 100644
--- a/src/features/delayApp/Component.js
+++ b/src/features/delayApp/Component.js
@@ -77,7 +77,6 @@ export default @inject('stores', 'actions') @injectSheet(styles) @observer class
77 const { defaultTrialPlan } = stores.features.features; 77 const { defaultTrialPlan } = stores.features.features;
78 78
79 if (!hadSubscription) { 79 if (!hadSubscription) {
80 console.log('directly activate trial');
81 actions.user.activateTrial({ planId: defaultTrialPlan }); 80 actions.user.activateTrial({ planId: defaultTrialPlan });
82 81
83 gaEvent('DelayApp', 'subscribe_click', 'Delay App Feature'); 82 gaEvent('DelayApp', 'subscribe_click', 'Delay App Feature');
diff --git a/src/features/todos/store.js b/src/features/todos/store.js
index 4691c90ea..5c6abff4c 100644
--- a/src/features/todos/store.js
+++ b/src/features/todos/store.js
@@ -30,7 +30,6 @@ export default class TodoStore extends FeatureStore {
30 } 30 }
31 31
32 @computed get isTodosPanelVisible() { 32 @computed get isTodosPanelVisible() {
33 console.log('isTodosPanelVisible', 'delayAppState.isDelayAppScreenVisible', delayAppState.isDelayAppScreenVisible);
34 if (delayAppState.isDelayAppScreenVisible) return false; 33 if (delayAppState.isDelayAppScreenVisible) return false;
35 if (this.settings.isTodosPanelVisible === undefined) return DEFAULT_TODOS_VISIBLE; 34 if (this.settings.isTodosPanelVisible === undefined) return DEFAULT_TODOS_VISIBLE;
36 35