fix(conference-timer) Show correct time (#13070)

Show meeting time after returning from breakout room
This commit is contained in:
Robert Pintilii
2023-03-17 12:23:20 +02:00
committed by GitHub
parent 82a03c36c6
commit a89f762a66

View File

@@ -82,6 +82,7 @@ const ConferenceTimer = ({ textStyle }: IProps) => {
const stopTimer = useCallback(() => {
if (interval.current) {
clearInterval(interval.current);
interval.current = undefined;
}
setTimerValue(getLocalizedDurationFormatter(0));