diff --git a/frontend/src/Components/Page/Header/ArtistSearchInput.js b/frontend/src/Components/Page/Header/ArtistSearchInput.js index 7a316662c..52a800deb 100644 --- a/frontend/src/Components/Page/Header/ArtistSearchInput.js +++ b/frontend/src/Components/Page/Header/ArtistSearchInput.js @@ -182,17 +182,15 @@ class ArtistSearchInput extends Component { }); } - if (value.length >= 3) { - suggestionGroups.push({ - title: 'Add New Artist', - suggestions: [ - { - type: ADD_NEW_TYPE, - title: value - } - ] - }); - } + suggestionGroups.push({ + title: 'Add New Artist', + suggestions: [ + { + type: ADD_NEW_TYPE, + title: value + } + ] + }); const inputProps = { ref: this.setInputRef,