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() { ); } } - }