Skip to content

Commit

Permalink
Adjust countdown timer
Browse files Browse the repository at this point in the history
Day 1 is now scheduled to start at 9PM BST.
  • Loading branch information
SweetBoy13735 committed Jun 25, 2024
1 parent 1ca4004 commit 1c58d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion res/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const navBar = document.querySelector("nav.bar"), timerSegments = document.querySelector(".timer").querySelectorAll("td"), streamButton = document.querySelector("header .stream.button");

// State management
const featureTime = new Date("2024-06-27T22:00:00.000+01:00").getTime();
const featureTime = new Date("2024-06-27T21:00:00.000+01:00").getTime();

const updateTimer = setInterval(() => {
const timer = featureTime - new Date().getTime();
Expand Down

0 comments on commit 1c58d79

Please sign in to comment.