diff --git a/src/views/mod-queue/mod-queue.tsx b/src/views/mod-queue/mod-queue.tsx index aee05926..5366c5a5 100644 --- a/src/views/mod-queue/mod-queue.tsx +++ b/src/views/mod-queue/mod-queue.tsx @@ -18,6 +18,7 @@ import { getFormattedDate, getFormattedTimeAgo } from '../../lib/utils/time-util import useFeedResetStore from '../../stores/use-feed-reset-store'; import useChallengesStore from '../../stores/use-challenges-store'; import { alertChallengeVerificationFailed } from '../../lib/utils/challenge-utils'; +import Tooltip from '../../components/tooltip'; const { addChallenge } = useChallengesStore.getState(); @@ -207,10 +208,11 @@ const ModQueueRow = ({ comment, showBoardColumn = false, isOdd = false }: ModQue
{isAwaitingApproval && isOverThreshold ? ( <> - {getFormattedDate(timestamp)} ({getFormattedTimeAgo(timestamp)}) + {getFormattedDate(timestamp)}} content={getFormattedTimeAgo(timestamp)} /> ( + {getFormattedTimeAgo(timestamp)}) ) : ( - getFormattedDate(timestamp) + {getFormattedDate(timestamp)}} content={getFormattedTimeAgo(timestamp)} /> )}
{renderActions()}