fix navigate to main on splash page

This commit is contained in:
Akinwale Ariwodola 2019-04-02 22:38:55 +01:00
parent 534a966ee8
commit c5ebfa5021

View file

@ -120,13 +120,13 @@ class SplashScreen extends React.PureComponent {
} }
// user is authenticated, navigate to the main view // user is authenticated, navigate to the main view
if (user.has_verified_email) { /*if (user.has_verified_email) {
NativeModules.UtilityModule.getSecureValue(Constants.KEY_FIRST_RUN_PASSWORD).then(walletPassword => { NativeModules.UtilityModule.getSecureValue(Constants.KEY_FIRST_RUN_PASSWORD).then(walletPassword => {
getSync(walletPassword); getSync(walletPassword);
this.navigateToMain(); this.navigateToMain();
}); });
return; return;
} }*/
this.navigateToMain(); this.navigateToMain();
}); });