From f42a12c25c012697164d2daf42b81efaed8d2508 Mon Sep 17 00:00:00 2001 From: MehrdadAdabi <126083584+mehrdadAdabi@users.noreply.github.com> Date: Sun, 21 Sep 2025 19:49:59 +0330 Subject: [PATCH] fix: remove percent stauts --- app/components/ui/custom-bar-chart.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/app/components/ui/custom-bar-chart.tsx b/app/components/ui/custom-bar-chart.tsx index 567323a..b4d26d5 100644 --- a/app/components/ui/custom-bar-chart.tsx +++ b/app/components/ui/custom-bar-chart.tsx @@ -102,16 +102,13 @@ export function CustomBarChart({ >
- {displayValue != 100 && ( - - {item.valuePrefix || ""} - {formatNumber(parseFloat(displayValue))} - {item.valueSuffix || ""} - - )} + + {item.valuePrefix || ""} + + {formatNumber(parseFloat(displayValue))} + {item.valueSuffix || ""} + );