diff --git a/src/ui/React/StatsProgressBar.tsx b/src/ui/React/StatsProgressBar.tsx index c28f1d39e..5c743e2ec 100644 --- a/src/ui/React/StatsProgressBar.tsx +++ b/src/ui/React/StatsProgressBar.tsx @@ -30,10 +30,10 @@ export function StatsProgressBar({ const tooltip = ( Progress:  - {formatExp(current)} / {formatExp(max - min)} + {formatExp(current)} ({progress.toFixed(2)}%)
Remaining:  - {formatExp(remaining)} ({progress.toFixed(2)}%) + {formatExp(remaining)} / {formatExp(max - min)}
);