From c52a88f1177b92ec47e9f9f68194b6b3d50a652d Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Mon, 13 Apr 2020 19:50:52 -0400 Subject: [PATCH] fix timing --- ui/component/autoplayCountdown/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/autoplayCountdown/view.jsx b/ui/component/autoplayCountdown/view.jsx index 2813807cd..af18f319f 100644 --- a/ui/component/autoplayCountdown/view.jsx +++ b/ui/component/autoplayCountdown/view.jsx @@ -25,7 +25,7 @@ function AutoplayCountdown(props: Props) { const nextTitle = nextRecommendedClaim && nextRecommendedClaim.value && nextRecommendedClaim.value.title; /* this value is coupled with CSS timing variables on .autoplay-countdown__timer */ - const countdownTime = 1000; + const countdownTime = 5; const [timer, setTimer] = React.useState(countdownTime); const [timerCanceled, setTimerCanceled] = React.useState(false);