fix: new imports and order

This commit is contained in:
RadoslavDimchev 2023-08-30 11:53:58 +03:00
parent 0ea0c478dd
commit fa92902f6c
4 changed files with 7 additions and 3 deletions

View File

@ -1,14 +1,16 @@
import { Stack, YStack } from 'tamagui'
import KeyGenerationTitle from './KeyGenerationTitle'
import { Input, Text } from '@status-im/components'
import { useState } from 'react'
import KeyGenerationTitle from './KeyGenerationTitle'
const ConfirmRecoveryPhrase = () => {
const [words, setWords] = useState<string[]>(Array.from({ length: 24 }, () => ''))
const changeWordHandler = (e: any, index: number) => {
const newWords = [...words]
newWords[index] = e.target.value
setWords(newWords)
}

View File

@ -3,7 +3,7 @@ import { Text } from '@status-im/components'
import { useState } from 'react'
import KeyGenerationHeader from './KeyGenerationHeader/KeyGenerationHeader'
import RecoveryMechanism from './RecoveryMechanism'
import RecoveryMechanism from './RecoveryMechanism/RecoveryMechanism'
import KeystoreFiles from './KeystoreFiles'
import RecoveryPhrase from './RecoveryPhrase'
import { BOTH_KEY_AND_RECOVERY, KEYSTORE_FILES, RECOVERY_PHRASE } from '../../../constants'

View File

@ -1,4 +1,5 @@
import { XStack } from 'tamagui'
import KeyGenerationSyncCard from './KeyGenerationSyncCard'
import KeyGenerationTitle from '../KeyGenerationTitle'

View File

@ -1,7 +1,8 @@
import { Stack, XStack, YStack } from 'tamagui'
import StandardGauge from '../../../../components/Charts/StandardGauge'
import { ClearIcon } from '@status-im/icons'
import { Text } from '@status-im/components'
import StandardGauge from '../../../../components/Charts/StandardGauge'
import BorderBox from '../../../../components/General/BorderBox'
import { formatNumberForGauge } from '../../../../utilities'