diff --git a/src/utils/translators/ldb/staffStation.ts b/src/utils/translators/ldb/staffStation.ts index 6c9e5e7..ba63e17 100644 --- a/src/utils/translators/ldb/staffStation.ts +++ b/src/utils/translators/ldb/staffStation.ts @@ -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(); }