diff --git a/apps/renderer/src/modules/boost/boost-progress.tsx b/apps/renderer/src/modules/boost/boost-progress.tsx index 4690e8a814..82b4bec934 100644 --- a/apps/renderer/src/modules/boost/boost-progress.tsx +++ b/apps/renderer/src/modules/boost/boost-progress.tsx @@ -20,8 +20,8 @@ export const BoostProgress = ({ const [numberFormater] = useState(() => new Intl.NumberFormat()) const t = useI18n() const rawPercentage = (boostCount / (boostCount + remainingBoostsToLevelUp)) * 100 - const percentage = 2 + (rawPercentage * (98 - 1)) / 100 - const nextLevel = level + 2 + const percentage = Math.max(rawPercentage, 2) + const nextLevel = level + 1 return (