diff --git a/web/components/datetime-tooltip.tsx b/web/components/datetime-tooltip.tsx
index b6310672..7aaf61aa 100644
--- a/web/components/datetime-tooltip.tsx
+++ b/web/components/datetime-tooltip.tsx
@@ -12,11 +12,16 @@ export function DateTimeTooltip(props: {
time: number
text?: string
children?: React.ReactNode
+ noTap?: boolean
}) {
- const { time, text } = props
+ const { time, text, noTap } = props
const formattedTime = dayjs(time).format('MMM DD, YYYY hh:mm a z')
const toolTip = text ? `${text} ${formattedTime}` : formattedTime
- return