Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
daniloercoli committed Jan 28, 2019
1 parent 00ec3ca commit 45f8bde
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions packages/editor/src/components/post-title/index.native.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/**
* External dependencies
*/
import { TextInput } from 'react-native';

/**
* WordPress dependencies
*/
Expand Down Expand Up @@ -56,7 +51,7 @@ class PostTitle extends Component {
onFocus={ this.onSelect }
onBlur={ this.props.onBlur } // always assign onBlur as a props
multiline={ false }
style={ [ style , {
style={ [ style, {
minHeight: Math.max( minHeight, this.state.aztecHeight ),
} ] }
onChange={ ( event ) => {
Expand All @@ -68,7 +63,7 @@ class PostTitle extends Component {
placeholder={ decodedPlaceholder }
value={ title }
onSplit={ this.props.onEnterPress }
>
>
</RichText>
);
}
Expand Down

0 comments on commit 45f8bde

Please sign in to comment.