From 67754a0004b7a9575401939c713633af061cc236 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 30 Dec 2024 18:06:46 -0600 Subject: [PATCH] Cleanup --- commands/commit-count.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/commit-count.js b/commands/commit-count.js index 0f0b7d9..f0f705e 100644 --- a/commands/commit-count.js +++ b/commands/commit-count.js @@ -86,7 +86,7 @@ module.exports = { monthName = 'Jan.'; } - const mapKey = monthName + ' ' + (messageDate.getDate()).toString(); + const mapKey = monthName + ' ' + messageDate.getDate().toString(); if (messageMap.has(mapKey)) { const mapValue = messageMap.get(mapKey);