diff --git a/frontend/src/components/dashboard/Barchart.jsx b/frontend/src/components/dashboard/Barchart.jsx
index b900474..4cb9e14 100644
--- a/frontend/src/components/dashboard/Barchart.jsx
+++ b/frontend/src/components/dashboard/Barchart.jsx
@@ -2,17 +2,18 @@ import { BarChart, Card, Title } from "@tremor/react";
import React from "react";
import axiosInstance from "../../api/configs/AxiosConfig";
-
+const fetchBarChartData = async () => {
+}
const chartdata3 = [
{
- date: "Jan 23",
- "2022": 45,
- "2023": 78,
+ date: "Monday",
+ "This Week": 45,
+ "Last Week": 78,
},
{
- date: "Feb 23",
- "2022": 52,
- "2023": 71,
+ date: "Tuesday",
+ "This Week": 52,
+ "Last Week": 71,
},
{
date: "Mar 23",
@@ -70,20 +71,17 @@ export const BarChartGraph = () => {
const [value, setValue] = React.useState(null);
return (
<>
-
{JSON.stringify(value)}
>
);
};
\ No newline at end of file
diff --git a/frontend/src/components/dashboard/dashboard.jsx b/frontend/src/components/dashboard/dashboard.jsx
index a4204a1..961f6c4 100644
--- a/frontend/src/components/dashboard/dashboard.jsx
+++ b/frontend/src/components/dashboard/dashboard.jsx
@@ -37,6 +37,8 @@ export default function Dashboard() {