diff --git a/src/pages/Dashboard/UptimeChart/UptimeChart.tsx b/src/pages/Dashboard/UptimeChart/UptimeChart.tsx
index 77beddf4..6753b2ac 100644
--- a/src/pages/Dashboard/UptimeChart/UptimeChart.tsx
+++ b/src/pages/Dashboard/UptimeChart/UptimeChart.tsx
@@ -11,21 +11,21 @@ type UptimeChartProps = {
}
const UptimeChart = ({ data }: UptimeChartProps) => {
- return (
-
-
-
- {/* */}
-
- {data[0].name && (
-
- )}
-
-
- );
+ return (
+
+
+
+ {/* @NOTE: We can add as many Bar items as we need and use them for each day of the month */}
+
+ {data[0].name && (
+
+ )}
+
+
+ );
}
export default UptimeChart