From 635d67fc7fe6ec3d5be4281633ce53c245fb6d20 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Sat, 8 Dec 2018 12:48:11 +0100 Subject: Revert "Fix premium check" This reverts commit 07cc1c8c83511c9079a7e084714254b5f83c615b. --- src/features/delayApp/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/features/delayApp') diff --git a/src/features/delayApp/index.js b/src/features/delayApp/index.js index f8d9b9e7f..9ffa1d2fd 100644 --- a/src/features/delayApp/index.js +++ b/src/features/delayApp/index.js @@ -40,7 +40,7 @@ export default function init(stores) { config.delayDuration = globalConfig.wait !== undefined ? globalConfig.wait : DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.wait; autorun(() => { - if (stores.user.data.isPremium || stores.services.all.length === 0) { + if (stores.services.all.length === 0) { shownAfterLaunch = true; return; } -- cgit v1.2.3-54-g00ecf