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 || ""} + );