diff --git a/apps/extension/src/pages/send/amount/index.tsx b/apps/extension/src/pages/send/amount/index.tsx index e7a8015405..374024c0a8 100644 --- a/apps/extension/src/pages/send/amount/index.tsx +++ b/apps/extension/src/pages/send/amount/index.tsx @@ -259,10 +259,11 @@ function useChangeSenderAddressWhenEtherMintChainSendToHexAddress( isEVMOnlyChain: boolean, account: AccountSetBase & CosmosAccount & CosmwasmAccount & SecretAccount, setIsEvmTx: React.Dispatch>, - ethereumAccount: EthereumAccountBase + ethereumAccount: EthereumAccountBase, + sendType: SendType ) { useEffect(() => { - if (isEvmChain) { + if (isEvmChain && sendType === "send") { const sendingDenomHelper = new DenomHelper( sendConfigs.amountConfig.currency.coinMinimalDenom ); @@ -608,7 +609,8 @@ export const SendAmountPage: FunctionComponent = observer(() => { isEVMOnlyChain, account, setIsEvmTx, - ethereumAccount + ethereumAccount, + sendType ); useEffect(() => {