diff --git a/CHANGELOG.md b/CHANGELOG.md index 936310f8..f76de79e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/frontend/src/features/recording/hooks/useHumanizeRecordingMaxDuration.ts b/src/frontend/src/features/recording/hooks/useHumanizeRecordingMaxDuration.ts index 4e1905cb..b8793e32 100644 --- a/src/frontend/src/features/recording/hooks/useHumanizeRecordingMaxDuration.ts +++ b/src/frontend/src/features/recording/hooks/useHumanizeRecordingMaxDuration.ts @@ -11,6 +11,7 @@ export const useHumanizeRecordingMaxDuration = () => { return humanizeDuration(data?.recording?.max_duration, { language: i18n.language, + delimiter: ' ', }) }, [data]) }