diff --git a/packages/react-native/Libraries/Modal/Modal.js b/packages/react-native/Libraries/Modal/Modal.js index 345191ab52850f..eab0caa1722210 100644 --- a/packages/react-native/Libraries/Modal/Modal.js +++ b/packages/react-native/Libraries/Modal/Modal.js @@ -261,7 +261,7 @@ class Modal extends React.Component { // Helper function to encapsulate platform specific logic to show or not the Modal. _shouldShowModal(): boolean { if (Platform.OS === 'ios') { - return this.props.visible === true || this.state.isRendered === true; + return this.state.isRendered === true; } return this.props.visible === true;