From 26fc76a767adfd74473959b950bc71f1726c51e0 Mon Sep 17 00:00:00 2001 From: Allan Carr Date: Mon, 9 Mar 2026 17:42:13 -0700 Subject: [PATCH] IO-3606 Tech Console Job Clock In Ticket Date Signed-off-by: Allan Carr --- .../tech-job-clock-in-form.container.jsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/src/components/tech-job-clock-in-form/tech-job-clock-in-form.container.jsx b/client/src/components/tech-job-clock-in-form/tech-job-clock-in-form.container.jsx index 4bceddeb2..c18382d6d 100644 --- a/client/src/components/tech-job-clock-in-form/tech-job-clock-in-form.container.jsx +++ b/client/src/components/tech-job-clock-in-form/tech-job-clock-in-form.container.jsx @@ -66,10 +66,9 @@ export function TechClockInContainer({ setTimeTicketContext, technician, bodysho employeeid: technician.id, date: typeof bodyshop.timezone === "string" - ? // TODO: Client Update - This may be broken - dayjs.tz(theTime, bodyshop.timezone).format("YYYY-MM-DD") + ? dayjs(theTime).tz(bodyshop.timezone).format("YYYY-MM-DD") : typeof bodyshop.timezone === "number" - ? dayjs(theTime).format("YYYY-MM-DD").utcOffset(bodyshop.timezone) + ? dayjs(theTime).utcOffset(bodyshop.timezone).format("YYYY-MM-DD") : dayjs(theTime).format("YYYY-MM-DD"), clockon: dayjs(theTime), jobid: values.jobid,