From d1b95189dc33662e9b23bfe2b93b358f3acc0a9c Mon Sep 17 00:00:00 2001 From: Wikzyy Date: Fri, 21 Feb 2025 11:31:16 +0700 Subject: [PATCH] update --- src/pages/account/manage/ManageAccount.tsx | 8 +- src/pages/dashboards/home/staticChart.tsx | 135 +-------------------- 2 files changed, 6 insertions(+), 137 deletions(-) diff --git a/src/pages/account/manage/ManageAccount.tsx b/src/pages/account/manage/ManageAccount.tsx index 522bf0a..402e5ca 100644 --- a/src/pages/account/manage/ManageAccount.tsx +++ b/src/pages/account/manage/ManageAccount.tsx @@ -71,9 +71,11 @@ const ManageAccount = () => { // }; return ( -
-

Manage Account

- +
+
+

Manage Account

+ +
); }; diff --git a/src/pages/dashboards/home/staticChart.tsx b/src/pages/dashboards/home/staticChart.tsx index f83830d..1c777f1 100644 --- a/src/pages/dashboards/home/staticChart.tsx +++ b/src/pages/dashboards/home/staticChart.tsx @@ -6,7 +6,7 @@ export const staticChartData = { { x: 'Jan 01', y: 50 - }, + } ] }, { @@ -54,136 +54,3 @@ export const staticChartData = { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] } }; - -// const staticChartData = { -// series: [ -// { -// name: 'Sales', -// data: [ -// { -// x: 'Jan', -// y: 20 -// } -// ] -// }, -// { -// name: 'Orders', -// data: [ -// { -// x: 'Feb', -// y: 32 -// } -// ] -// }, -// { -// data: [ -// { -// x: 'Mar', -// y: 41 -// } -// ] -// }, -// { -// data: [ -// { -// x: 'Apr', -// y: 38 -// } -// ] -// }, -// { -// data: [ -// { -// x: 'May', -// y: 50 -// } -// ] -// }, -// { -// data: [ -// { -// x: 'Jun', -// y: 47 -// } -// ] -// }, -// { -// data: [ -// { -// x: 'Jul', -// y: 62 -// } -// ] -// }, -// { -// data: [ -// { -// x: 'Aug', -// y: 51 -// } -// ] -// }, -// { -// data: [ -// { -// x: 'Sep', -// y: 25 -// } -// ] -// }, - -// { -// data: [ -// { -// x: 'Oct', -// y: 72 -// } -// ] -// }, -// { -// data: [ -// { -// x: 'Nov', -// y: 70 -// } -// ] -// }, -// { -// data: [ -// { -// x: 'Des', -// y: 100 -// } -// ] -// }, -// ], -// options: { -// chart: { -// type: chartType, -// height: 350 -// }, -// title: { -// text: 'Overview', -// align: 'center' -// }, -// xaxis: { -// categories: [ -// 'Jan', -// 'Feb', -// 'Mar', -// 'Apr', -// 'May', -// 'Jun', -// 'Jul', -// 'Aug', -// 'Sep', -// 'Oct', -// 'Nov', -// 'Dec' -// ] -// }, -// legend: { -// show: chartLegend === 'true' -// } -// } -// };