refactor: rename negative to overtime

This commit is contained in:
Carlos Valente
2024-06-04 15:34:43 +02:00
committed by Carlos Valente
parent ee1753ef29
commit 6d1a911ab8
6 changed files with 7 additions and 7 deletions
@@ -44,7 +44,7 @@ export default function PlaybackTimer(props: PropsWithChildren<PlaybackTimerProp
const isRolling = playback === Playback.Roll;
const isWaiting = timer.secondaryTimer !== null && timer.secondaryTimer > 0 && timer.current === null;
const isOvertime = timer.phase === TimerPhase.Negative;
const isOvertime = timer.phase === TimerPhase.Overtime;
const hasAddedTime = Boolean(timer.addedTime);
const rollLabel = isRolling ? 'Roll mode active' : '';