diff --git a/src/routes/safe/components/Balances/SendModal/screens/ContractInteraction/index.tsx b/src/routes/safe/components/Balances/SendModal/screens/ContractInteraction/index.tsx index 2c945a0d..46bdcda7 100644 --- a/src/routes/safe/components/Balances/SendModal/screens/ContractInteraction/index.tsx +++ b/src/routes/safe/components/Balances/SendModal/screens/ContractInteraction/index.tsx @@ -38,9 +38,9 @@ const ContractInteraction = ({ contractAddress, initialValues, onClose, onNext } try { const txObject = createTxObject(selectedMethod, contractAddress, values) const data = txObject.encodeABI() - const result = await txObject.call({ from: safeAddress }) if (isReadMethod(selectedMethod)) { + const result = await txObject.call({ from: safeAddress }) setCallResults(result) // this was a read method, so we won't go to the 'review' screen