Undo timezone change. Production is different from local. Not sure how to render in local timezone...

This commit is contained in:
James Grugett 2022-02-22 15:14:52 -06:00
parent 72d0797b3f
commit 85c3a1532a

View File

@ -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 (