Missed a spot

This commit is contained in:
NinjaCheetah 2022-04-24 19:14:44 -04:00
parent fecffb2c53
commit 0c25309adc
No known key found for this signature in database
GPG Key ID: 6EC6DD38B449B426

View File

@ -2,7 +2,5 @@ window.addEventListener('load', setFooterDate, false);
function setFooterDate() {
let footerDate = document.getElementById("footerDate");
let date = new Date().getFullYear();
footerDate.textContent = date.toString();
footerDate.textContent = new Date().getFullYear().toString();
}