diff --git a/res/js/dynamic-content.js b/res/js/dynamic-content.js index 5dcb291..54700f7 100644 --- a/res/js/dynamic-content.js +++ b/res/js/dynamic-content.js @@ -21,6 +21,6 @@ function isItChristmas() { const currentDate = new Date(); const currentYear = currentDate.getFullYear(); const startDate = new Date(`${currentYear}-11-10`); - const endDate = new Date(`${currentYear + 1}-03-01`); + const endDate = new Date(`${currentYear + 1}-01-01`); return currentDate > startDate && currentDate < endDate; }