Skip to content

Commit

Permalink
Merge pull request #32901 from dukenv0307/fix/32262
Browse files Browse the repository at this point in the history
Display modal after keyboard is hidden
  • Loading branch information
grgia authored Dec 19, 2023
2 parents ab4279b + f002219 commit 2641a24
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,9 @@ class ContactMethodDetailsPage extends Component {
* @param {Boolean} isOpen
*/
toggleDeleteModal(isOpen) {
this.setState({isDeleteModalOpen: isOpen});
InteractionManager.runAfterInteractions(() => {
this.setState({isDeleteModalOpen: isOpen});
});
Keyboard.dismiss();
}

Expand Down

0 comments on commit 2641a24

Please sign in to comment.