Making sure that search input has atleast one letter to save in local storage

This commit is contained in:
Rupin Khandelwal
2022-09-15 11:20:45 -06:00
parent fcca0e508b
commit 95ce2d72ab

View File

@ -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))
}