From d980d11be049fa88b5adc95ae32591399d04fcc5 Mon Sep 17 00:00:00 2001 From: Ategon Date: Mon, 27 Jan 2025 22:01:19 -0500 Subject: [PATCH] Fix timer --- src/components/timers/index.tsx | 34 +++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/src/components/timers/index.tsx b/src/components/timers/index.tsx index 32d659b..ea5cf59 100644 --- a/src/components/timers/index.tsx +++ b/src/components/timers/index.tsx @@ -23,19 +23,23 @@ export default function Timers() { fetchCurrentJamPhase(); }, []); - - - if(activeJamResponse && activeJamResponse.jam) - { - const startTimeUTC = new Date(activeJamResponse.jam.startTime).toISOString(); + if (activeJamResponse && activeJamResponse.jam) { + const startTimeUTC = new Date( + activeJamResponse.jam.startTime + ).toISOString(); console.log(startTimeUTC); - if (activeJamResponse.phase == "Suggestion" || activeJamResponse.phase == "Survival" || activeJamResponse.phase == "Voting") { + if ( + activeJamResponse.phase == "Suggestion" || + activeJamResponse.phase == "Survival" || + activeJamResponse.phase == "Voting" || + activeJamResponse.phase == "Upcoming Jam" + ) { return (

Site under construction

@@ -46,7 +50,12 @@ export default function Timers() {

Site under construction

@@ -57,7 +66,13 @@ export default function Timers() {

Site under construction

@@ -73,5 +88,4 @@ export default function Timers() { ); } } - }