fix send duck standard setting bug in updateSendAsset (#13289)

feature/default_network_editable
Alex Donesky 3 years ago committed by GitHub
parent 4cf5c942aa
commit 269aaa6fb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      ui/ducks/send/send.js

@ -1434,11 +1434,15 @@ export function updateSendAsset({ type, details }) {
state.send.account.address ?? getSelectedAddress(state), state.send.account.address ?? getSelectedAddress(state),
); );
// TODO remove along with migration of isERC721 tokens and stripping away this designation // TODO remove along with migration of isERC721 tokens and stripping away this designation
if (details && details.isERC721 === undefined) { if (details) {
if (details.isERC721 === undefined) {
const updatedAssetDetails = await updateTokenType(details.address); const updatedAssetDetails = await updateTokenType(details.address);
details.isERC721 = updatedAssetDetails.isERC721; details.isERC721 = updatedAssetDetails.isERC721;
} }
if (details.standard === undefined) {
details.standard = ERC20; details.standard = ERC20;
}
}
await dispatch(hideLoadingIndication()); await dispatch(hideLoadingIndication());
} else if (type === ASSET_TYPES.COLLECTIBLE) { } else if (type === ASSET_TYPES.COLLECTIBLE) {
let isCurrentOwner = true; let isCurrentOwner = true;

Loading…
Cancel
Save