mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
adding condition check to verify token data is loaded before rendering approve screen (#10606)
This commit is contained in:
parent
80266cf33c
commit
85181aaff4
@ -19,6 +19,7 @@ import {
|
|||||||
getNativeCurrency,
|
getNativeCurrency,
|
||||||
} from '../../selectors';
|
} from '../../selectors';
|
||||||
import { currentNetworkTxListSelector } from '../../selectors/transactions';
|
import { currentNetworkTxListSelector } from '../../selectors/transactions';
|
||||||
|
import Loading from '../../components/ui/loading-screen';
|
||||||
import { getCustomTxParamsData } from './confirm-approve.util';
|
import { getCustomTxParamsData } from './confirm-approve.util';
|
||||||
import ConfirmApproveContent from './confirm-approve-content';
|
import ConfirmApproveContent from './confirm-approve-content';
|
||||||
|
|
||||||
@ -87,7 +88,7 @@ export default function ConfirmApprove() {
|
|||||||
? getCustomTxParamsData(data, { customPermissionAmount, decimals })
|
? getCustomTxParamsData(data, { customPermissionAmount, decimals })
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
return (
|
return tokenSymbol ? (
|
||||||
<ConfirmTransactionBase
|
<ConfirmTransactionBase
|
||||||
toAddress={toAddress}
|
toAddress={toAddress}
|
||||||
identiconAddress={tokenAddress}
|
identiconAddress={tokenAddress}
|
||||||
@ -141,5 +142,7 @@ export default function ConfirmApprove() {
|
|||||||
hideSenderToRecipient
|
hideSenderToRecipient
|
||||||
customTxParamsData={customData}
|
customTxParamsData={customData}
|
||||||
/>
|
/>
|
||||||
|
) : (
|
||||||
|
<Loading />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user