maybe fixed? idk
All checks were successful
Deploy / deploy (push) Successful in 2m43s

This commit is contained in:
Lee 2024-09-28 06:16:09 +01:00
parent be19ad1833
commit 4cbe227827

@ -34,7 +34,13 @@ export function timeAgo(input: Date | number) {
* @param date the date
*/
export function getMidnightAlignedDate(date: Date) {
return new Date(date.getFullYear(), date.getMonth(), date.getDate());
const midnightDate = new Date(
date.getFullYear(),
date.getMonth(),
date.getDate(),
);
midnightDate.setUTCHours(0, 0, 0, 0);
return midnightDate;
}
/**