From fbf39ba0632a7324d30fe2da30ba57fc5c2ca2cc Mon Sep 17 00:00:00 2001 From: shanejonas Date: Wed, 26 Jun 2019 11:19:12 -0700 Subject: [PATCH] fix(txlist): index formatting --- src/components/TxList/TxList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)} ); }