diff --git a/src/components/transactions/TxDetails/index.tsx b/src/components/transactions/TxDetails/index.tsx index 97008f38f8..9b81c3c017 100644 --- a/src/components/transactions/TxDetails/index.tsx +++ b/src/components/transactions/TxDetails/index.tsx @@ -126,7 +126,9 @@ const TxDetails = ({ const [txDetailsData, error, loading] = useAsync( async () => { - trackEvent(TX_LIST_EVENTS.FETCH_DETAILS) + if (!txDetails) { + trackEvent(TX_LIST_EVENTS.FETCH_DETAILS) + } return txDetails || getTransactionDetails(chainId, txSummary.id) },