chore: bumping version

This commit is contained in:
Chubby Granny Chaser
2025-04-18 22:57:28 +01:00
parent 97589e63fa
commit a12e5a15fa
8 changed files with 40 additions and 54 deletions

View File

@@ -173,7 +173,5 @@ export const formatDate = (
language: string
): string => {
if (isNaN(new Date(date).getDate())) return "N/A";
const locale = getDateLocale(language);
return format(date, locale == enUS ? "MM/dd/yyyy" : "dd/MM/yyyy");
return format(date, language == "en" ? "MM-dd-yyyy" : "dd/MM/yyyy");
};