fix warnings
This commit is contained in:
parent
46556f71ed
commit
13bdc216cf
|
@ -1,22 +1,17 @@
|
||||||
import { Separator, XStack, YStack } from 'tamagui'
|
import { Separator, XStack, YStack } from 'tamagui'
|
||||||
import { useState } from 'react'
|
import { useState } from 'react'
|
||||||
import { Button, Input, Text } from '@status-im/components'
|
import { Button, Input, Text } from '@status-im/components'
|
||||||
|
|
||||||
import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
|
import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
|
||||||
|
|
||||||
import Titles from '../../components/General/Titles'
|
import Titles from '../../components/General/Titles'
|
||||||
|
|
||||||
import CreateAvatar from '../../components/General/CreateAvatar/CreateAvatar'
|
|
||||||
|
|
||||||
import { NodeIcon, SettingsIcon, CompleteIdIcon, ClearIcon } from '@status-im/icons'
|
import { NodeIcon, SettingsIcon, CompleteIdIcon, ClearIcon } from '@status-im/icons'
|
||||||
import Header from '../../components/General/Header'
|
import Header from '../../components/General/Header'
|
||||||
import Icon from '../../components/General/Icon'
|
|
||||||
import PairedSuccessfully from '../PairDevice/PairedSuccessfully'
|
|
||||||
import ClientAddressRow from './ClientAddressRow'
|
import ClientAddressRow from './ClientAddressRow'
|
||||||
import BeackonAddress from './BeaconAddress'
|
import BeackonAddress from './BeaconAddress'
|
||||||
|
|
||||||
const ConnectExistingInstance = () => {
|
const ConnectExistingInstance = () => {
|
||||||
const isPaired = false
|
|
||||||
const [encryptedPassword, setEncryptedPassword] = useState('')
|
const [encryptedPassword, setEncryptedPassword] = useState('')
|
||||||
|
|
||||||
const changeEncryptedPasswordHandler = (value: string) => {
|
const changeEncryptedPasswordHandler = (value: string) => {
|
||||||
|
@ -50,7 +45,7 @@ const ConnectExistingInstance = () => {
|
||||||
</Button>
|
</Button>
|
||||||
</XStack>
|
</XStack>
|
||||||
<ClientAddressRow />
|
<ClientAddressRow />
|
||||||
<BeackonAddress/>
|
<BeackonAddress />
|
||||||
<Separator borderColor={'#e3e3e3'} />
|
<Separator borderColor={'#e3e3e3'} />
|
||||||
<YStack space={'$2'}>
|
<YStack space={'$2'}>
|
||||||
<Text size={11} color={'#647084'}>
|
<Text size={11} color={'#647084'}>
|
||||||
|
|
Loading…
Reference in New Issue