Skip to content

Commit

Permalink
fix(wallet-setup): mnemonic validation
Browse files Browse the repository at this point in the history
  • Loading branch information
banklesss committed Apr 29, 2024
1 parent 15bdb41 commit 4224c99
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,6 @@ export const RestoreWalletScreen = () => {
const mnemonicWordsComplete = newWords.every(Boolean)
const isValid: boolean = mnemonicWordsComplete ? validateMnemonic(newWords.join(' ')) : false

console.log('isValid', isValid)
console.log('mnemonicWordsComplete', mnemonicWordsComplete)

if (mnemonicWordsComplete && isValid) {
Keyboard.dismiss()
setIsValidPhrase(true)
Expand Down

0 comments on commit 4224c99

Please sign in to comment.