UI: Change order of information in stats progress bar (#1764)

This commit is contained in:
catloversg 2024-11-11 07:30:47 +07:00 committed by GitHub
parent 650cf51acb
commit daec7482fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -30,10 +30,10 @@ export function StatsProgressBar({
const tooltip = (
<Typography sx={{ textAlign: "right" }}>
<strong>Progress:</strong>&nbsp;
{formatExp(current)} / {formatExp(max - min)}
{formatExp(current)} ({progress.toFixed(2)}%)
<br />
<strong>Remaining:</strong>&nbsp;
{formatExp(remaining)} ({progress.toFixed(2)}%)
{formatExp(remaining)} / {formatExp(max - min)}
</Typography>
);