Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #201 from axelarnetwork/develop
Browse files Browse the repository at this point in the history
removing erc20 warning for native assets on EVM
  • Loading branch information
canhtrinh authored Mar 22, 2022
2 parents 451a682 + fd29889 commit ed4e495
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ const TransactionStatusWindow = ({
)
},
}
if (sourceChain?.module === "evm" && activeStep === 2 && !userConfirmed) {
if (sourceChain?.module === "evm" && activeStep === 2 && !userConfirmed && sourceChain.chainName.toLowerCase() !== selectedSourceAsset?.native_chain) {
const message: any = (
<div>
Be sure to send only the{" "}
Expand Down

0 comments on commit ed4e495

Please sign in to comment.