Merge pull request #430 from hydralauncher/fix/game-play-time

fix: remove play time fraction
This commit is contained in:
JackEnx 2024-05-17 22:45:07 -03:00 committed by GitHub
commit cdad2f5554
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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