From f38238fc05361fb1af62175c6c8a6c187e705c61 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Tue, 19 Mar 2024 13:16:25 +0200 Subject: [PATCH] feat(devices-health-check): make exact content --- .../DevicesHealthCheck/DevicesHealthCheck.tsx | 36 ++++++++----------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/src/pages/DevicesHealthCheck/DevicesHealthCheck.tsx b/src/pages/DevicesHealthCheck/DevicesHealthCheck.tsx index 7983d215..5b5a2acd 100644 --- a/src/pages/DevicesHealthCheck/DevicesHealthCheck.tsx +++ b/src/pages/DevicesHealthCheck/DevicesHealthCheck.tsx @@ -1,19 +1,19 @@ import { useSelector } from 'react-redux' import { Stack, XStack, YStack } from 'tamagui' import { CloseCircleIcon } from '@status-im/icons' -import { Button, InformationBox } from '@status-im/components' +import { InformationBox } from '@status-im/components' import type { Property } from 'csstype' -import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow' -import NimbusLogo from '../../components/Logos/NimbusLogo' -import Titles from '../../components/General/Titles' import DeviceStorageHealth from '../../components/Charts/DeviceStorageHealth' import DeviceCPULoad from '../../components/Charts/DeviceCPULoad' import HealthInfoSection from '../../components/General/HealthInfoSection' import DeviceMemory from '../../components/Charts/DeviceMemoryHealth' import DeviceNetworkHealth from '../../components/Charts/DeviceNetworkHealth' import { RootState } from '../../redux/store' +import TitleLogo from '../../components/General/TitleLogo' import { useWindowSize } from '../../hooks/useWindowSize' +import RightSidebar from '../../components/General/RightSideBar/RightSidebar' +import LeftSidebar from '../../components/General/LeftSidebar/LeftSidebar' const DevicesHealthCheck = () => { const deviceHealthState = useSelector( @@ -34,24 +34,20 @@ const DevicesHealthCheck = () => { } return ( - + + - - + { icon={} message="The information provided in the Nodes Health Check is meant to utilized as a guide to guage the readiness of your device, however please do your own due diligence prior to commiting any funds. Read our Health Check Disclosure for more information." /> - - - - + + ) }