From 72d0797b3fa450df9b492171913273763563567a Mon Sep 17 00:00:00 2001 From: James Grugett Date: Tue, 22 Feb 2022 14:54:58 -0600 Subject: [PATCH] Use local timezone for date time tooltip --- 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 6b8e5216..efb01961 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 z') + const formattedTime = dayjs(time).format('MMM DD, YYYY hh:mm a') const toolTip = text ? `${text} ${formattedTime}` : formattedTime return (