From 5a1919241377d667457cdf3579620a317af43718 Mon Sep 17 00:00:00 2001 From: Marcos Date: Fri, 23 Feb 2024 11:26:15 -0300 Subject: [PATCH] fix: Removed unused time_remaining_seconds reference in TimerProvider --- src/timer/TimerProvider.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/timer/TimerProvider.jsx b/src/timer/TimerProvider.jsx index 66d17680..8271b06c 100644 --- a/src/timer/TimerProvider.jsx +++ b/src/timer/TimerProvider.jsx @@ -36,7 +36,6 @@ const TimerProvider = ({ const { desktop_application_js_url: workerUrl, ping_interval: pingInterval, - time_remaining_seconds: initSecondsLeft, timer_ends: timerEnds, } = attempt; @@ -121,7 +120,6 @@ const TimerProvider = ({ } }; }, [ - initSecondsLeft, timerEnds, pingInterval, workerUrl,