Making sure that search input has atleast one letter to save in local storage
This commit is contained in:
@ -143,7 +143,7 @@ export function LibrarySearchBar(props: LibrarySearchBarProps): JSX.Element {
|
||||
}}
|
||||
onClick={(event) => {
|
||||
event.preventDefault()
|
||||
if (inputValue !== null) {
|
||||
if (inputValue && inputValue.length > 0) {
|
||||
localStorage.setItem(inputValue, inputValue)
|
||||
setRecentSearches(Object.values(localStorage))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user