Skip to content
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.

Commit

Permalink
Fix a bug when skipping backup on account creation w/ a funder
Browse files Browse the repository at this point in the history
  • Loading branch information
johansten committed Sep 10, 2018
1 parent b897807 commit 55bcb6b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/pages/add-account/create-personal.component.js
Expand Up @@ -67,7 +67,7 @@ export default class CreatePersonalController {
};
})
.then(this.Reviewer.review)
.then(() => storeAccount);
.then(storeAccount);
}

else {
Expand All @@ -93,8 +93,7 @@ export default class CreatePersonalController {
}

skip() {
this.state = 4;
this.next();
this.createAccount();
}

next() {
Expand Down

0 comments on commit 55bcb6b

Please sign in to comment.