diff --git a/src/util/helpers.ts b/src/util/helpers.ts index 6976adcc..072b6e8f 100644 --- a/src/util/helpers.ts +++ b/src/util/helpers.ts @@ -79,7 +79,7 @@ export function convertAxiosError(err: AxiosError): Error { } export const toDateTime = (secs: number): Date => { - const t = new Date("1970-01-01T00:30:00Z"); // Unix epoch start. + const t = new Date("1970-01-01T00:00:00Z"); // Unix epoch start. t.setSeconds(secs); return t;