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( <> -

Help

-
Enter a page or directory name. If do not know any, clear the search field to list everything.
-
Using the Enter key would take you to the first page in list, if the list is not empty.
-
Alternatively, use the Up and Down arrow keys to select the page you want and use the Enter key.
-
Use Backspace to go back to the search.
+

Search PaulW.XYZ

+
Enter a page or directory name in the search bar above.
) return;