From d62c8e7f3bbdf950227c15d68f0bc8ea295930a6 Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 25 Feb 2021 19:22:12 -0800 Subject: [PATCH] fix: explorer vote card has incorrect timestamp conversion (#15552) --- explorer/src/components/instruction/vote/VoteDetailsCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer/src/components/instruction/vote/VoteDetailsCard.tsx b/explorer/src/components/instruction/vote/VoteDetailsCard.tsx index 3472a59959..c06f86d2de 100644 --- a/explorer/src/components/instruction/vote/VoteDetailsCard.tsx +++ b/explorer/src/components/instruction/vote/VoteDetailsCard.tsx @@ -72,7 +72,7 @@ export function VoteDetailsCard(props: { Timestamp - {displayTimestampUtc(info.vote.timestamp)} + {displayTimestampUtc(info.vote.timestamp * 1000)}