🚸(frontend) remove the default comma delimiter in humanized durations

The comma caused values like 1h30 to be rendered as “1 heure, 30 minutes,”
which feels awkward in most European languages.
This commit is contained in:
lebaudantoine
2026-01-07 23:45:46 +01:00
committed by aleb_the_flash
parent bbfbb23be5
commit 1f1a6371b4
2 changed files with 2 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ and this project adheres to
- 📈(frontend) track new recording's modes
- ♿️(frontend) improve SR and focus for transcript and recording #810
- 🚸(frontend) remove the default comma delimiter in humanized durations
### Fixed

View File

@@ -11,6 +11,7 @@ export const useHumanizeRecordingMaxDuration = () => {
return humanizeDuration(data?.recording?.max_duration, {
language: i18n.language,
delimiter: ' ',
})
}, [data])
}