explorer: fix fee sign in block transactions table (#28132)

This commit is contained in:
Justin Starry 2022-09-29 14:34:31 +08:00 committed by GitHub
parent 7469ce7ba1
commit 2c49bc9a41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ export function BlockHistoryCard({ block }: { block: VersionedBlockResponse }) {
<td className="text-end">
{tx.meta !== null ? (
<SolBalance lamports={-tx.meta.fee} />
<SolBalance lamports={tx.meta.fee} />
) : (
"Unknown"
)}