diff --git a/ui/app/(prowler)/_new-overview/graphs-tabs/risk-plot/risk-plot-client.tsx b/ui/app/(prowler)/_new-overview/graphs-tabs/risk-plot/risk-plot-client.tsx index 5ab32d01ad..96b72078cb 100644 --- a/ui/app/(prowler)/_new-overview/graphs-tabs/risk-plot/risk-plot-client.tsx +++ b/ui/app/(prowler)/_new-overview/graphs-tabs/risk-plot/risk-plot-client.tsx @@ -109,7 +109,7 @@ const CustomTooltip = ({ active, payload }: TooltipProps) => { const data = payload[0].payload; const riskColor = getRiskScoreColor(data.x); // Convert Risk Score (0-10) to percentage (0-100) for display - const riskScorePercentage = Math.round(data.x * 10); + const riskScorePercentage = data.x * 10; return (