Update stop watch for deployment status

This commit is contained in:
Shreerang Kale 2024-10-28 10:53:18 +05:30
parent aff015794e
commit a0e6add04d

View File

@ -17,7 +17,7 @@ interface StopwatchProps extends Omit<FormatMilliSecondProps, 'time'> {
} }
const Stopwatch = ({ offsetTimestamp, isPaused, ...props }: StopwatchProps) => { const Stopwatch = ({ offsetTimestamp, isPaused, ...props }: StopwatchProps) => {
const { totalSeconds, pause } = useStopwatch({ const { totalSeconds, pause, start } = useStopwatch({
autoStart: true, autoStart: true,
offsetTimestamp: offsetTimestamp, offsetTimestamp: offsetTimestamp,
}); });
@ -25,6 +25,8 @@ const Stopwatch = ({ offsetTimestamp, isPaused, ...props }: StopwatchProps) => {
useEffect(() => { useEffect(() => {
if (isPaused) { if (isPaused) {
pause(); pause();
} else {
start();
} }
}, [isPaused]); }, [isPaused]);