Skip to content

Commit

Permalink
Update event date+time
Browse files Browse the repository at this point in the history
  • Loading branch information
SherRao committed Feb 26, 2024
1 parent f0b8666 commit 1e6d502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Clock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Clock = () => {
return () => clearInterval(timer);
}, []);

const hackathonStartTime = 1712350800000; // use currentmillis.com to find this number
const hackathonStartTime = 1715979600000; // use currentmillis.com to find this number
const countdown = hackathonStartTime - date.getTime();
const days = (countdown - (countdown % 86400000)) / 86400000;
const hours = ((countdown % 86400000) - (countdown % 3600000)) / 3600000;
Expand Down

0 comments on commit 1e6d502

Please sign in to comment.