fix: remove play time fraction

This commit is contained in:
JackEnx 2024-05-17 22:42:20 -03:00
parent 7e321ea9d1
commit b0bf42f754

View File

@ -33,7 +33,7 @@ export function HeroPanelPlaytime({
const numberFormatter = useMemo(() => { const numberFormatter = useMemo(() => {
return new Intl.NumberFormat(i18n.language, { return new Intl.NumberFormat(i18n.language, {
maximumFractionDigits: 1, maximumFractionDigits: 0,
}); });
}, [i18n.language]); }, [i18n.language]);