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 { totalSeconds, pause } = useStopwatch({
const { totalSeconds, pause, start } = useStopwatch({
autoStart: true,
offsetTimestamp: offsetTimestamp,
});
@ -25,6 +25,8 @@ const Stopwatch = ({ offsetTimestamp, isPaused, ...props }: StopwatchProps) => {
useEffect(() => {
if (isPaused) {
pause();
} else {
start();
}
}, [isPaused]);