diff --git a/apps/client/src/features/control/message/TimerPreview.tsx b/apps/client/src/features/control/message/TimerPreview.tsx index 75bf04e04..4c3765ad5 100644 --- a/apps/client/src/features/control/message/TimerPreview.tsx +++ b/apps/client/src/features/control/message/TimerPreview.tsx @@ -27,6 +27,7 @@ export default function TimerPreview() { if (phase === TimerPhase.Pending) return 'Standby to start'; if (phase === TimerPhase.Overtime && data.endMessage) return 'Custom end message'; if (timerType === TimerType.TimeToEnd) return 'Time to end'; + if (timerType === TimerType.Clock) return 'Clock'; if (timerType === TimerType.None) return timerPlaceholder; return 'Timer'; })();