Update stop watch for deployment status
This commit is contained in:
parent
aff015794e
commit
a0e6add04d
@ -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]);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user