Skip to content

Commit

Permalink
Fix typo this.iOS -> this.isIOS (#17763)
Browse files Browse the repository at this point in the history
  • Loading branch information
etoledom authored Oct 4, 2019
1 parent e7bfe8e commit f47b191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rich-text/src/component/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ export class RichText extends Component {
value = '';
}
// On android if content is empty we need to send no content or else the placeholder with not show.
if ( ! this.iOS && value === '' ) {
if ( ! this.isIOS && value === '' ) {
return value;
}

Expand Down

0 comments on commit f47b191

Please sign in to comment.