Delrifai/#377 solve tooltip issues
The issue was happening because: In pages\witnesses.tsx the date passed is as follows 2024-11-20T07:24:12.70581
whereas in components\Witnesses\VotersDialog.tsx it is passed as "4 minutes ago" as it is was already formatted const witness = { ...witnessData, votes_updated_at: formatAndDelocalizeFromTime( witnessData.votes_updated_at ),
Solution: Remove the formatAndDelocalizeFromTime from useWitnessDetails Inside LastUpdatedTooltip keep using calculateTimeDiff function for determining colors and use formatAndDelocalizeFromTime for displaying human-readable text as it was working previously