diff --git a/components/dataViews/TransactionInfo/index.tsx b/components/dataViews/TransactionInfo/index.tsx
index 722746d..f517302 100644
--- a/components/dataViews/TransactionInfo/index.tsx
+++ b/components/dataViews/TransactionInfo/index.tsx
@@ -28,16 +28,6 @@ const TransactionInfo = ({ tx }: Props) => {
<>
<>
- {tx.msgs.map((msg, index) => (
-
- {isTxMsgSend(msg) ? : null}
- {isTxMsgDelegate(msg) ? : null}
- {isTxMsgUndelegate(msg) ? : null}
- {isTxMsgRedelegate(msg) ? : null}
- {isTxMsgClaimRewards(msg) ? : null}
- {isTxMsgSetWithdrawAddress(msg) ? : null}
-
- ))}
{tx.fee ? (
<>
@@ -58,6 +48,20 @@ const TransactionInfo = ({ tx }: Props) => {
) : null}
+
+ {tx.msgs.map((msg, index) => (
+
+ {isTxMsgSend(msg) ? : null}
+ {isTxMsgDelegate(msg) ? : null}
+ {isTxMsgUndelegate(msg) ? : null}
+ {isTxMsgRedelegate(msg) ? : null}
+ {isTxMsgClaimRewards(msg) ? : null}
+ {isTxMsgSetWithdrawAddress(msg) ? (
+
+ ) : null}
+
+ ))}
+
>