diff --git a/src/components/Button.js b/src/components/Button.js index 85254d4c1e75..a315abc160fc 100644 --- a/src/components/Button.js +++ b/src/components/Button.js @@ -247,7 +247,7 @@ class Button extends Component { onPressOut={this.props.onPressOut} disabled={this.props.isLoading || this.props.isDisabled} style={[ - this.props.isDisabled ? styles.cursorDisabled : {}, + this.props.isDisabled ? {...styles.cursorDisabled, ...styles.noSelect} : {}, ...this.additionalStyles, ]} > diff --git a/src/components/ConfirmContent.js b/src/components/ConfirmContent.js index 78e01b756a61..164a21ce9a8e 100644 --- a/src/components/ConfirmContent.js +++ b/src/components/ConfirmContent.js @@ -76,7 +76,7 @@ const ConfirmContent = props => ( /> {props.shouldShowCancelButton && (