diff --git a/src/components/transactions/HumanDescription/index.tsx b/src/components/transactions/HumanDescription/index.tsx index ff6feee1d9..4d6cd51492 100644 --- a/src/components/transactions/HumanDescription/index.tsx +++ b/src/components/transactions/HumanDescription/index.tsx @@ -58,14 +58,14 @@ export const TransferDescription = ({ txInfo, isSendTx }: { txInfo: Transfer; is export const HumanDescription = ({ fragments }: RichDecodedInfo) => { return ( <> - {fragments.map((fragment) => { + {fragments.map((fragment, index) => { switch (fragment.type) { case RichFragmentType.Text: - return {fragment.value} + return {fragment.value} case RichFragmentType.Address: - return + return case RichFragmentType.TokenValue: - return + return } })}