feat: add number of word in rec phrase

This commit is contained in:
RadoslavDimchev 2023-10-13 13:53:16 +03:00
parent 6b08f7ec85
commit 658968e58f

View File

@ -65,7 +65,7 @@ const RecoveryPhrase = ({ isKeystoreFiles }: RecoveryPhraseProps) => {
>
{generatedMnemonic.map((word, index) => (
<Text key={index} size={19} weight={'semibold'}>
{word}
{index + 1}. {word}
</Text>
))}
</XStack>