react-modal shouldCloseOnOverlayClick not working
问题 I'm using react modal, and the modal will not close upon clicking the overlay. I provide props to both isOpen and onRequestClose, but the modal remains open. closeModal= () => { this.setState({ modalIsOpen: false }); }; <Modal isOpen={this.state.modalIsOpen} onRequestClose={this.closeModal} shouldCloseOnOverlayClick={true} > <div>This is my Modal</div> <Button onClick={this.closeModal}>Close Modal<Button> </Modal> I know this has been an issue in the past. Is there anything else I can try?