diff --git a/src/components/TxList/TxList.tsx b/src/components/TxList/TxList.tsx index fb1ee4f7..44f0af05 100644 --- a/src/components/TxList/TxList.tsx +++ b/src/components/TxList/TxList.tsx @@ -30,7 +30,7 @@ function TxListItem({ tx }: { tx: any }) { : null} - {tx.transactionIndex} + {parseInt(tx.transactionIndex, 16)} ); }