[fix] fix the date format

This commit is contained in:
PrinOrange
2024-08-12 17:16:42 +08:00
parent c6fada1bbd
commit f67d221e71

View File

@@ -22,7 +22,7 @@ export const normalizeDate = (date: string = "1970-01-01"): string => {
11: "November",
12: "December",
};
return `${day_num} ${month_en[month_num]}, ${year}`;
return `${month_en[month_num]} ${day_num}, ${year}`;
};
export const getCurrentTime = (): {