From 290c79d53ddff41809ccc4f986cd5ea6a23ac2c5 Mon Sep 17 00:00:00 2001 From: feruz Date: Sun, 26 Jul 2020 20:35:40 +0300 Subject: [PATCH] emep --- .../application/container/applicationContainer.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/screens/application/container/applicationContainer.js b/src/screens/application/container/applicationContainer.js index b6186a45c..fd0af6b23 100644 --- a/src/screens/application/container/applicationContainer.js +++ b/src/screens/application/container/applicationContainer.js @@ -102,7 +102,7 @@ class ApplicationContainer extends Component { isIos: Platform.OS !== 'android', isThemeReady: false, appState: AppState.currentState, - showWelcomeModal: true, + showWelcomeModal: false, }; } @@ -136,12 +136,11 @@ class ApplicationContainer extends Component { if (version < parseFloat(appVersion)) { getUserData().then((accounts) => { this.setState({ showWelcomeModal: true }); - accounts && - accounts.forEach((account) => { - if (get(account, 'authType', '') === AUTH_TYPE.STEEM_CONNECT) { - scAccounts.push(account); - } - }); + accounts.forEach((account) => { + if (get(account, 'authType', '') === AUTH_TYPE.STEEM_CONNECT) { + scAccounts.push(account); + } + }); }); } });