diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx index 4efd10ae..8fe3a5f3 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx +++ b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx @@ -1,10 +1,10 @@ -import { Stack, YStack } from 'tamagui' +import { Stack, XStack, YStack } from 'tamagui' import { Button, InformationBox, Text } from '@status-im/components' import { CloseCircleIcon, CopyIcon, CheckIcon } from '@status-im/icons' import { useEffect, useState } from 'react' import { generateMnemonic } from 'web-bip39' -import wordlist from 'web-bip39/wordlists/english' import { useDispatch, useSelector } from 'react-redux' +import wordlist from 'web-bip39/wordlists/english' import { RootState } from '../../../redux/store' import { setGeneratedMnemonic } from '../../../redux/ValidatorOnboarding/KeyGeneration/slice' @@ -65,9 +65,16 @@ const RecoveryPhrase = ({ isKeystoreFiles }: RecoveryPhraseProps) => { }} > {generatedMnemonic.map((word, index) => ( - - {index + 1}. {word} - + + + + {index + 1}. + + + + {word} + + ))} {isCopied ? : }