diff --git a/src/utils/time.ts b/src/utils/time.ts index bfec23e..be714e9 100644 --- a/src/utils/time.ts +++ b/src/utils/time.ts @@ -5,8 +5,10 @@ * @param date Date * @returns String */ -export const showDate = (locale: Map, date: Date) => - `${date.toDateString()} ${locale.get("u_time_at")} ${date.toTimeString().split(" ")[0]}`; +export const showDate = (locale: Map, date: Date) => { + const timezoned = new Date(date.getTime()); + return `${timezoned.toDateString()} ${locale.get("u_time_at")} ${timezoned.toTimeString().split(" ")[0]}`; +}; enum TimeSecond { Year = 31536000,