diff --git a/components/common/DurationInput/index.tsx b/components/common/DurationInput/index.tsx index 325af102..91f6cd71 100644 --- a/components/common/DurationInput/index.tsx +++ b/components/common/DurationInput/index.tsx @@ -206,7 +206,7 @@ const DurationInput = React.forwardRef( }, className )} - value={`${getSeconds()}`.padStart(2, '0')} + value={getSeconds() > 0 ? `${getSeconds()}`.padStart(2, '0') : ''} onChange={handleSecondsChange} onKeyUp={handleKeyUp} onKeyDown={handleKeyDown}