Skip to content

Commit

Permalink
Bug fix: conver 12 words string to List of string (#1332) (#1334)
Browse files Browse the repository at this point in the history
Co-authored-by: home <[email protected]>

Co-authored-by: Raúl Urtecho <[email protected]>
Co-authored-by: home <[email protected]>
  • Loading branch information
3 people authored Nov 15, 2021
1 parent 6971a8d commit bf425fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class RecoveryPhraseState extends Equatable {
factory RecoveryPhraseState.initial(AuthDataModel authData) {
return RecoveryPhraseState(
pageState: PageState.initial,
words: authData.words,
words: authData.words.first.split('-'),
);
}
}

0 comments on commit bf425fa

Please sign in to comment.