Updated pit progress

This commit is contained in:
2025-09-08 23:27:10 +02:00
parent 0ceda994ee
commit 96345d888f

View File

@@ -10,11 +10,14 @@ export default function PitProgress({ prestige, xp }: { prestige: number, xp: nu
const percent = getProgress(currentXp, xp, nextXp) const percent = getProgress(currentXp, xp, nextXp)
return ( return (
<div className="flex gap-2 items-center">
<GenericProgress <GenericProgress
tooltipId="pit-progress" tooltipId="pit-progress"
tooltipContent={`${formatNumber(xp)}/${formatNumber(nextXp)} XP`} tooltipContent={`${formatNumber(xp)}/${formatNumber(nextXp)} XP`}
percent={percent} percent={percent}
className={`bg-mc-${presColor}`} className={`bg-mc-${presColor}`}
/> />
<p className="text-mc-aqua">120</p>
</div>
) )
} }