diff --git a/app/components/Views/ChoosePassword/index.js b/app/components/Views/ChoosePassword/index.js index a3a25d22a85..d50e9c1f33e 100644 --- a/app/components/Views/ChoosePassword/index.js +++ b/app/components/Views/ChoosePassword/index.js @@ -408,7 +408,11 @@ class ChoosePassword extends PureComponent { }); }); } catch (error) { - await this.recreateVault(''); + try { + await this.recreateVault(''); + } catch (e) { + Logger.error(e); + } // Set state in app as it was with no password await AsyncStorage.setItem(EXISTING_USER, TRUE); await AsyncStorage.removeItem(SEED_PHRASE_HINTS);