Skip to content

Commit

Permalink
fix preload current month
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavcpawar authored Aug 18, 2023
1 parent 97838b0 commit 00cc316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/csp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 00cc316

Please sign in to comment.