fix: explorer vote card has incorrect timestamp conversion (#15552)

This commit is contained in:
Josh
2021-02-25 19:22:12 -08:00
committed by GitHub
parent a6b9327cd0
commit d62c8e7f3b

View File

@ -72,7 +72,7 @@ export function VoteDetailsCard(props: {
<tr> <tr>
<td>Timestamp</td> <td>Timestamp</td>
<td className="text-lg-right text-monospace"> <td className="text-lg-right text-monospace">
{displayTimestampUtc(info.vote.timestamp)} {displayTimestampUtc(info.vote.timestamp * 1000)}
</td> </td>
</tr> </tr>