diff --git a/src/pages/Dashboard/DashboardContent.tsx b/src/pages/Dashboard/DashboardContent.tsx index a072084b..5895d1a2 100644 --- a/src/pages/Dashboard/DashboardContent.tsx +++ b/src/pages/Dashboard/DashboardContent.tsx @@ -31,6 +31,7 @@ const DashboardContent = () => (
diff --git a/src/pages/Dashboard/DeviceUptime/DeviceUptime.tsx b/src/pages/Dashboard/DeviceUptime/DeviceUptime.tsx index 94373ea2..e5d93cdd 100644 --- a/src/pages/Dashboard/DeviceUptime/DeviceUptime.tsx +++ b/src/pages/Dashboard/DeviceUptime/DeviceUptime.tsx @@ -6,6 +6,7 @@ import { useState } from 'react' import UptimeChart from '../UptimeChart/UptimeChart' import Icon from '../../../components/General/Icon' import { getMonthIndicesFromRange } from '../../../utilities' +import DashboardCardWrapper from '../DashboardCardWrapper' const DeviceUptime = () => { const [isCalendarVisible, setIsCalendarVisible] = useState(false) @@ -27,13 +28,9 @@ const DeviceUptime = () => { } return ( - - + @@ -104,7 +101,7 @@ const DeviceUptime = () => { - + ) }