diff --git a/app/screens/search/search.js b/app/screens/search/search.js index 6578c9ebf..fea9fb945 100644 --- a/app/screens/search/search.js +++ b/app/screens/search/search.js @@ -106,13 +106,13 @@ export default class Search extends PureComponent { if (this.props.initialValue) { this.search(this.props.initialValue); - } else { - setTimeout(() => { - if (this.refs.searchBar) { - this.refs.searchBar.focus(); - } - }, 150); } + + setTimeout(() => { + if (this.refs.searchBar) { + this.refs.searchBar.focus(); + } + }, 150); } componentDidUpdate(prevProps) {