Fixed small bug

This commit is contained in:
2025-09-06 23:36:54 +02:00
parent bf0d422cde
commit 011f7994cc

View File

@@ -12,7 +12,7 @@ export default function PitProgress({ prestige, xp }: { prestige: number, xp: nu
return ( return (
<GenericProgress <GenericProgress
tooltipId="pit-progress" tooltipId="pit-progress"
tooltipContent={`${formatNumber(currentXp)}/${formatNumber(nextXp)} XP`} tooltipContent={`${formatNumber(xp)}/${formatNumber(nextXp)} XP`}
percent={percent} percent={percent}
className={`bg-mc-${presColor}`} className={`bg-mc-${presColor}`}
/> />