1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

hides the CancelSpeedupPopover (#20180)

This commit is contained in:
António Regadas 2023-08-01 11:16:49 +01:00 committed by GitHub
parent d11ef07ae1
commit c92f3b32b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,9 @@ import { formatDateWithYearContext } from '../../../helpers/utils/util';
import Button from '../../ui/button';
import AdvancedGasFeePopover from '../advanced-gas-fee-popover';
import CancelButton from '../cancel-button';
///: BEGIN:ONLY_INCLUDE_IN(build-main,build-beta,build-flask)
import CancelSpeedupPopover from '../cancel-speedup-popover';
///: END:ONLY_INCLUDE_IN
import EditGasFeePopover from '../edit-gas-fee-popover';
import EditGasPopover from '../edit-gas-popover';
import { MetaMetricsContext } from '../../../contexts/metametrics';
@ -449,7 +451,11 @@ const TransactionListItem = (props) => {
<TransactionListItemInner {...props} setEditGasMode={setEditGasMode} />
{supportsEIP1559 && (
<>
<CancelSpeedupPopover />
{
///: BEGIN:ONLY_INCLUDE_IN(build-main,build-beta,build-flask)
<CancelSpeedupPopover />
///: END:ONLY_INCLUDE_IN
}
<EditGasFeePopover />
<AdvancedGasFeePopover />
</>