diff --git a/src/components/ConfirmAction/ConfirmAction.jsx b/src/components/ConfirmAction/ConfirmAction.jsx index f49ef0c46..2a51c37c8 100644 --- a/src/components/ConfirmAction/ConfirmAction.jsx +++ b/src/components/ConfirmAction/ConfirmAction.jsx @@ -32,21 +32,17 @@ export default class ConfirmAction extends Component { this.originalAction(e); } } else { - // Suspend clickout so that users can interact with our modal - this.context.suspendClickout(true); this.setState({ confirming: true, originalEvent: _cloneDeep(e) }); } }; cancel = () => { - this.context.suspendClickout(false); this.setState({ confirming: false }); }; proceed = () => { const event = this.state.originalEvent; - this.context.suspendClickout(false); this.setState({ confirming: false, originalEvent: null }); if (this.originalAction) { this.originalAction(event); @@ -74,11 +70,7 @@ export default class ConfirmAction extends Component {
- +
{this.props.title || }