diff --git a/apps/client/src/features/viewers/common/viewUtils.ts b/apps/client/src/features/viewers/common/viewUtils.ts index cb4093a55..27379f357 100644 --- a/apps/client/src/features/viewers/common/viewUtils.ts +++ b/apps/client/src/features/viewers/common/viewUtils.ts @@ -81,7 +81,7 @@ export function getFormattedTimer( localisedMinutes: string, options: FormattingOptions, ): string { - if (timer == null) { + if (timer == null || timerType === TimerType.None) { return options.removeSeconds ? timerPlaceholderMin : timerPlaceholder; } @@ -98,7 +98,7 @@ export function getFormattedTimer( } } - let display = millisToString(timeToParse); + let display = millisToString(timeToParse, { direction: timerType }); if (options.removeLeadingZero) { display = removeLeadingZero(display); }