From d94231293840d28294254525c42e34360b83946c Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Thu, 19 Oct 2023 18:02:59 +0300 Subject: [PATCH] fix: Execution Uptime --- .../Dashboard/ExecutionUptime/ExecutionUptime.tsx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/pages/Dashboard/ExecutionUptime/ExecutionUptime.tsx b/src/pages/Dashboard/ExecutionUptime/ExecutionUptime.tsx index 71183ed1..37b23706 100644 --- a/src/pages/Dashboard/ExecutionUptime/ExecutionUptime.tsx +++ b/src/pages/Dashboard/ExecutionUptime/ExecutionUptime.tsx @@ -1,18 +1,14 @@ -import { Shadow, Text } from '@status-im/components' +import { Text } from '@status-im/components' import { Stack, XStack, YStack } from 'tamagui' import Icon from '../../../components/General/Icon' import UptimeChart from '../UptimeChart/UptimeChart' +import DashboardCardWrapper from '../DashboardCardWrapper' const ExecutionUptime = () => { const monthlyActivity = [3, 0, 5, 4, 6, 7, 0, 9, 10, 1, 2, 3] return ( - @@ -48,7 +44,7 @@ const ExecutionUptime = () => { - + ) } export default ExecutionUptime