diff --git a/explorer/src/components/instruction/InstructionCard.tsx b/explorer/src/components/instruction/InstructionCard.tsx index 9bb078fc4b..048734652d 100644 --- a/explorer/src/components/instruction/InstructionCard.tsx +++ b/explorer/src/components/instruction/InstructionCard.tsx @@ -39,7 +39,7 @@ export function InstructionCard({ const signature = useContext(SignatureContext); const details = useTransactionDetails(signature); let raw: TransactionInstruction | undefined = undefined; - if (details) { + if (details && childIndex === undefined) { raw = details?.data?.raw?.transaction.instructions[index]; } const fetchRaw = useFetchRawTransaction();