From 999310baa21b8b9c1ce7464b99ac3bf3b52fc14a Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Sat, 30 Sep 2023 20:34:30 +0100 Subject: [PATCH] Add comment Signed-off-by: Fred Boniface --- src/utils/translators/ldb/staffStation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }