From 00cc3166a3302b393623773e114f500e4649312b Mon Sep 17 00:00:00 2001 From: Pranav Chandrakant Pawar <111304477+pranavcpawar@users.noreply.github.com> Date: Fri, 18 Aug 2023 14:37:47 +0530 Subject: [PATCH] fix preload current month --- pages/csp.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/csp.tsx b/pages/csp.tsx index f83844d..b1eb54a 100644 --- a/pages/csp.tsx +++ b/pages/csp.tsx @@ -15,7 +15,7 @@ const getCurrent = () => { const now = new Date(); const month = now.toLocaleString('default', { month: 'long' }); const year = now.getFullYear(); - return `${month}, ${year}`; + return `${month} ${year}`; }; export default function SocietyPage() {