From 13bdc216cfb3dcc3f66a520330bcf79c2ea3e0db Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Mon, 25 Sep 2023 18:38:47 +0300 Subject: [PATCH] fix warnings --- .../ConnectExistingInstance.tsx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/pages/ConnectExistingInstance/ConnectExistingInstance.tsx b/src/pages/ConnectExistingInstance/ConnectExistingInstance.tsx index 1fd90a64..36545bfb 100644 --- a/src/pages/ConnectExistingInstance/ConnectExistingInstance.tsx +++ b/src/pages/ConnectExistingInstance/ConnectExistingInstance.tsx @@ -1,22 +1,17 @@ import { Separator, XStack, YStack } from 'tamagui' import { useState } from 'react' import { Button, Input, Text } from '@status-im/components' - import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow' import Titles from '../../components/General/Titles' - -import CreateAvatar from '../../components/General/CreateAvatar/CreateAvatar' - + import { NodeIcon, SettingsIcon, CompleteIdIcon, ClearIcon } from '@status-im/icons' import Header from '../../components/General/Header' -import Icon from '../../components/General/Icon' -import PairedSuccessfully from '../PairDevice/PairedSuccessfully' + import ClientAddressRow from './ClientAddressRow' import BeackonAddress from './BeaconAddress' const ConnectExistingInstance = () => { - const isPaired = false const [encryptedPassword, setEncryptedPassword] = useState('') const changeEncryptedPasswordHandler = (value: string) => { @@ -50,7 +45,7 @@ const ConnectExistingInstance = () => { - +