Integrated new time handling system

This commit is contained in:
2025-11-28 15:31:35 -05:00
parent f499e33fe1
commit d24a01db8c
5 changed files with 19 additions and 16 deletions

View File

@@ -1,4 +1,5 @@
export function toDateTime(date: Date): string {
console.log(date);
// This produces a CST-local time because server runs in CST
const year = date.getFullYear();
const month = (date.getMonth() + 1).toString().padStart(2, "0");