fix(recovery-phrase): generate mnemonic default value

This commit is contained in:
RadoslavDimchev 2024-02-01 11:29:13 +02:00 committed by Radoslav Dimchev
parent e90fed3309
commit 8a5577db74
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ const initialState: KeyGenerationState = {
mnemonic: Array(24).fill(''),
isCopyPastedPhrase: false,
validWords: Array(24).fill(true),
generatedMnemonic: Array(24).fill(''),
generatedMnemonic: [],
isConfirmPhraseStage: false,
recoveryMechanism: RECOVERY_PHRASE,
}