Skip to content

Commit

Permalink
JS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theyosh committed Jan 27, 2024
1 parent 0f676c9 commit c51ac1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/constants/easter-eggs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ export const fireworks = () => {
const fireworks =
(today.getMonth() === 11 && today.getDate() >= 31) ||
(today.getMonth() === 0 && today.getDate() <= 1) ||
(today.getMonth() === 7 && today.getDate() >= 1 && today.getFullYear() == 2024) ||
(today.getMonth() === 7 && today.getDate() <= 30 && today.getFullYear() == 2024);
(today.getMonth() === 7 && today.getDate() >= 1 && today.getFullYear() === 2024) ||
(today.getMonth() === 7 && today.getDate() <= 30 && today.getFullYear() === 2024);
let fireworksCanvas = document.querySelector('canvas#fireworks');

if (fireworks) {
Expand Down

0 comments on commit c51ac1f

Please sign in to comment.