adding condition to check for non-mainnet network and test env (#11007)

feature/default_network_editable
Niranjana Binoy 4 years ago committed by Dan Miller
parent 640c6d98d3
commit e906bd8d0e
  1. 7
      ui/pages/confirm-approve/confirm-approve.js

@ -26,6 +26,7 @@ import {
getNextSuggestedNonce,
getNoGasPriceFetched,
getIsEthGasPriceFetched,
getIsMainnet,
} from '../../selectors';
import { currentNetworkTxListSelector } from '../../selectors/transactions';
import Loading from '../../components/ui/loading-screen';
@ -120,7 +121,9 @@ export default function ConfirmApprove() {
: null;
const isEthGasPrice = useSelector(getIsEthGasPriceFetched);
const noGasPrice = useSelector(getNoGasPriceFetched);
const isMainnet = useSelector(getIsMainnet);
const hideBasic =
isEthGasPrice || noGasPrice || !(isMainnet || process.env.IN_TEST);
return tokenSymbol === undefined ? (
<Loading />
) : (
@ -144,7 +147,7 @@ export default function ConfirmApprove() {
showModal({
name: 'CUSTOMIZE_GAS',
txData,
hideBasic: isEthGasPrice || noGasPrice,
hideBasic,
}),
)
}

Loading…
Cancel
Save