From 282703fa3df6c617eada86683c66e0f33be4a77c Mon Sep 17 00:00:00 2001 From: Galla Date: Sun, 8 Dec 2024 20:10:52 -0500 Subject: [PATCH] fixing formatting --- .github/scripts/get-current-date.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/get-current-date.js b/.github/scripts/get-current-date.js index e66762e6..a2f2e113 100644 --- a/.github/scripts/get-current-date.js +++ b/.github/scripts/get-current-date.js @@ -15,8 +15,8 @@ function getDaySuffix(day) { return "th"; } } -const utcDate = new Date().toLocaleString("en-US", { timeZone: 'America/New_York' }); +const utcDate = new Date().toLocaleString("en-US", { timeZone: 'America/New_York' }); const date = new Date(utcDate); const monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; const day = date.getDate();