fix: project details table refresh

This commit is contained in:
Théo LAGACHE
2026-02-10 11:44:45 +01:00
parent a49b6d6573
commit 921a355ae0
48 changed files with 808 additions and 566 deletions
@@ -83,7 +83,7 @@ export function PercentageLineChart(props: percentageLineChartProps) {
<YAxis
tickLine={false}
domain={[0, 100]}
tickFormatter={(tick) => `${tick}%`}
tickFormatter={(tick) => `${Number(tick).toFixed(0)}%`}
/>
<ChartTooltip
defaultIndex={1}
@@ -112,7 +112,7 @@ function PourcentTooltip({
<span className="h-2 w-2 rounded-full bg-[#fc6504]"/>
<span className="text-muted-foreground">Success Rate :</span>
<span className="ml-auto font-semibold">
{data.successRate} %
{data.successRate.toFixed(0)} %
</span>
</div>
</div>