diff --git a/components/_fuzzy.tsx b/components/_fuzzy.tsx index 2a55b95..080ccee 100644 --- a/components/_fuzzy.tsx +++ b/components/_fuzzy.tsx @@ -43,17 +43,11 @@ export default class Fuzzy { showSearchResults(): void { let searchValue: string = this.searchValue.toLowerCase(); searchValue = searchValue.trimStart().trimEnd(); - if ( - (this.maxResults !== undefined && searchValue === '') || - searchValue === '?' || - searchValue === 'help') { + if (this.maxResults !== undefined && searchValue === ''){ this.setResultsValue( <> -
Enter key would take you to the first page in list, if the list is not empty.Up and Down arrow keys to select the page you want and use the Enter key.Backspace to go back to the search.