feat: show decimal part of hour

This commit is contained in:
Zamitto 2024-05-01 17:44:06 -03:00
parent f1c37a0aaf
commit cce54f9937

View File

@ -66,7 +66,7 @@ export function HeroPanel({
} }
const hours = minutes / 60 const hours = minutes / 60
return hours.toFixed(0) + " " + t("hours") return hours.toFixed(1) + " " + t("hours")
} }
const finalDownloadSize = useMemo(() => { const finalDownloadSize = useMemo(() => {