From 85c3a1532a46fc36bb3606f6ed76a88964b53c5f Mon Sep 17 00:00:00 2001 From: James Grugett Date: Tue, 22 Feb 2022 15:14:52 -0600 Subject: [PATCH] Undo timezone change. Production is different from local. Not sure how to render in local timezone... --- web/components/datetime-tooltip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/datetime-tooltip.tsx b/web/components/datetime-tooltip.tsx index efb01961..6b8e5216 100644 --- a/web/components/datetime-tooltip.tsx +++ b/web/components/datetime-tooltip.tsx @@ -14,7 +14,7 @@ export function DateTimeTooltip(props: { }) { const { time, text } = props - const formattedTime = dayjs(time).format('MMM DD, YYYY hh:mm a') + const formattedTime = dayjs(time).format('MMM DD, YYYY hh:mm a z') const toolTip = text ? `${text} ${formattedTime}` : formattedTime return (