From 502241fb63c18c8ef6c5972e4fea07026d520019 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Tue, 22 Aug 2023 09:26:37 +0300 Subject: [PATCH] fix: replace existing icons after merge from mein --- src/components/General/TagContainer.tsx | 7 +++---- src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx | 3 +-- src/pages/PairDevice/PairDevice.tsx | 14 ++++++-------- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/src/components/General/TagContainer.tsx b/src/components/General/TagContainer.tsx index 42dbfd0d..4b11be71 100644 --- a/src/components/General/TagContainer.tsx +++ b/src/components/General/TagContainer.tsx @@ -1,14 +1,13 @@ import { Tag } from '@status-im/components' import { XStack } from 'tamagui' -import PairIcon from '../Icons/PairIcon' -import CreateIcon from '../Icons/CreateIcon' import './TagContainer.css' +import { AddSmallIcon, SwapIcon } from '@status-im/icons' const TagContainer = () => { return ( - - + + ) } diff --git a/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx b/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx index 8422dbbb..5454b378 100644 --- a/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx +++ b/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx @@ -13,9 +13,8 @@ import { useSelector } from 'react-redux' import { RootState } from '../../redux/store' const DeviceHealthCheck = () => { - const deviceHealthState = useSelector((state: RootState) => state.deviceHealth) - console.log(deviceHealthState) + return ( { const [autoChecked, setAutoChecked] = useState(false) const [isAwaitingPairing, setIsAwaitingPairing] = useState(false) - const isPaired = false + const isPaired = true const isPairing = true const changeSetIsAwaitingPairing = (result: boolean) => { @@ -34,8 +32,8 @@ const PairDevice = () => { - - + + @@ -66,7 +64,7 @@ const PairDevice = () => { {isPaired && } -