From 2e6902a0ef00a1e07ebabce3a2f61e6efc92c726 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Thu, 5 Sep 2019 12:02:56 +0200 Subject: polish todo preview text --- src/features/todos/components/TodosWebview.js | 4 ++-- src/features/todos/store.js | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'src/features/todos') diff --git a/src/features/todos/components/TodosWebview.js b/src/features/todos/components/TodosWebview.js index fa530daed..44c94a3ff 100644 --- a/src/features/todos/components/TodosWebview.js +++ b/src/features/todos/components/TodosWebview.js @@ -17,7 +17,7 @@ const CLOSE_TODOS_BUTTON_SIZE = 35; const messages = defineMessages({ premiumInfo: { id: 'feature.todos.premium.info', - defaultMessage: '!!!The Franz Todos Preview is currently only available for Franz Premium accounts.', + defaultMessage: '!!!Franz Todos are available to premium users now!', }, upgradeCTA: { id: 'feature.todos.premium.upgrade', @@ -25,7 +25,7 @@ const messages = defineMessages({ }, rolloutInfo: { id: 'feature.todos.premium.rollout', - defaultMessage: '!!!Franz Todos will be available to everyone soon.', + defaultMessage: '!!!Everyone else will have to wait a little longer.', }, }); diff --git a/src/features/todos/store.js b/src/features/todos/store.js index 5c6abff4c..4691c90ea 100644 --- a/src/features/todos/store.js +++ b/src/features/todos/store.js @@ -30,6 +30,7 @@ export default class TodoStore extends FeatureStore { } @computed get isTodosPanelVisible() { + console.log('isTodosPanelVisible', 'delayAppState.isDelayAppScreenVisible', delayAppState.isDelayAppScreenVisible); if (delayAppState.isDelayAppScreenVisible) return false; if (this.settings.isTodosPanelVisible === undefined) return DEFAULT_TODOS_VISIBLE; -- cgit v1.2.3-54-g00ecf