mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
hide network busy banner
This commit is contained in:
parent
68f928c8a2
commit
f09a8a9b93
@ -15,7 +15,7 @@ const TransactionAlerts = ({
|
||||
userAcknowledgedGasMissing,
|
||||
setUserAcknowledgedGasMissing,
|
||||
}) => {
|
||||
const { estimateUsed, hasSimulationError, supportsEIP1559, isNetworkBusy } =
|
||||
const { estimateUsed, hasSimulationError, supportsEIP1559 } =
|
||||
useGasFeeContext();
|
||||
const pendingTransactions = useSelector(submittedPendingTransactionsSelector);
|
||||
const t = useI18nContext();
|
||||
@ -60,11 +60,11 @@ const TransactionAlerts = ({
|
||||
{t('lowPriorityMessage')}
|
||||
</BannerAlert>
|
||||
)}
|
||||
{supportsEIP1559 && isNetworkBusy ? (
|
||||
{/* {supportsEIP1559 && isNetworkBusy ? (
|
||||
<BannerAlert severity={SEVERITIES.WARNING}>
|
||||
{t('networkIsBusy')}
|
||||
</BannerAlert>
|
||||
) : null}
|
||||
) : null} */}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user