newStaffLDB-API #48

Merged
fred.boniface merged 85 commits from newStaffLDB-API into main 2023-10-03 21:35:03 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 999310baa2 - Show all commits

View File

@ -158,7 +158,7 @@ function transformUnspecifiedDateTime(input: string): Date | undefined {
if (!input) {
return undefined;
}
const date = tz(input, "Europe/London");
const date = tz(input, "Europe/London"); // Want to be creating a moment object using moment.tz(...)
return date.toDate();
}