Skip to content

Commit

Permalink
add MODIFY_IN_PLACE as mode prop on edit-gas-popover (#11527)
Browse files Browse the repository at this point in the history
This is necessary for the submit method to call the right background process
  • Loading branch information
brad-decker authored Jul 15, 2021
1 parent 8e5ebfb commit 4aab488
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
import SenderToRecipient from '../../ui/sender-to-recipient';
import { PageContainerFooter } from '../../ui/page-container';
import EditGasPopover from '../edit-gas-popover';
import { EDIT_GAS_MODES } from '../../../../shared/constants/gas';
import {
ConfirmPageContainerHeader,
ConfirmPageContainerContent,
Expand Down Expand Up @@ -193,6 +194,7 @@ export default class ConfirmPageContainer extends Component {
)}
{editingGas && (
<EditGasPopover
mode={EDIT_GAS_MODES.MODIFY_IN_PLACE}
onClose={handleCloseEditGas}
transaction={currentTransaction}
/>
Expand Down

0 comments on commit 4aab488

Please sign in to comment.