summaryrefslogtreecommitdiffstats
path: root/src/features/todos/store.js
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/features/todos/store.js
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/features/todos/store.js')
-rw-r--r--src/features/todos/store.js1
1 files changed, 0 insertions, 1 deletions
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