From 4939428d2b4ee7822c5f46c6860e105003e90ea3 Mon Sep 17 00:00:00 2001 From: Shemy Gan Date: Fri, 1 Nov 2024 13:44:55 -0400 Subject: [PATCH] fix typo --- Client/src/Components/Charts/Gauge/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Client/src/Components/Charts/Gauge/index.jsx b/Client/src/Components/Charts/Gauge/index.jsx index f173c17fb..8f34084fc 100644 --- a/Client/src/Components/Charts/Gauge/index.jsx +++ b/Client/src/Components/Charts/Gauge/index.jsx @@ -3,7 +3,7 @@ import { RadialBarChart, RadialBar, ResponsiveContainer } from "recharts"; import PropTypes from "prop-types"; const DATA = [{ value: 100 }]; -const PRGRESS_THRESHOLD = 50; +const PROGRESS_THRESHOLD = 50; const DEFAULT_CONTAINER_HEIGHT = 160; const DEFAULT_HEADER_FONT = { fontSize: "11px" }; const DEFAULT_SUBHEADER_FONT = { fontSize: "9px" }; @@ -56,7 +56,7 @@ const Gauge = ({ PRGRESS_THRESHOLD + progressValue > PROGRESS_THRESHOLD ? theme.palette.primary.main : theme.palette.percentage.uptimePoor }