Skip to content

Commit

Permalink
🐛 fix(metamask): Add missing await in OnboardingPage (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
duckception authored Oct 18, 2023
1 parent babf6bd commit 059611a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wallets/metamask/src/pages/OnboardingPage/page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export class OnboardingPage {
}

async importWallet(seedPhrase: string, password: string) {
return importWallet(this.page, seedPhrase, password)
return await importWallet(this.page, seedPhrase, password)
}
}

0 comments on commit 059611a

Please sign in to comment.