From 2c3163696be50b5f33bb9c8d4f4d6f88667b742a Mon Sep 17 00:00:00 2001 From: KacperKoza343 Date: Wed, 21 Aug 2024 10:47:29 +0200 Subject: [PATCH] update(app/graph-page): remove cumulative chart --- .../ui-2024/src/pages/Graph/Graph.tsx | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/packages/apps/dashboard/ui-2024/src/pages/Graph/Graph.tsx b/packages/apps/dashboard/ui-2024/src/pages/Graph/Graph.tsx index c7408eed63..44ef5286a0 100644 --- a/packages/apps/dashboard/ui-2024/src/pages/Graph/Graph.tsx +++ b/packages/apps/dashboard/ui-2024/src/pages/Graph/Graph.tsx @@ -1,4 +1,4 @@ -import { AreaChart, LineChart } from '@components/Charts'; +import { AreaChart } from '@components/Charts'; import Tabs from '@mui/material/Tabs'; import TabPanel from '@mui/lab/TabPanel'; import Tab from '@mui/material/Tab'; @@ -8,7 +8,7 @@ import Typography from '@mui/material/Typography'; import PageWrapper from '@components/PageWrapper'; import Breadcrumbs from '@components/Breadcrumbs'; -type graphType = 'bucketed' | 'cumulative'; +type graphType = 'bucketed'; const Graph = () => { const [graphType, setGraphType] = useState('bucketed'); @@ -34,13 +34,6 @@ const Graph = () => { label={Bucketed} value="bucketed" /> - Cumulative} - value="cumulative" - /> { > - - - );