remove / keyboard shortcut hint in search bar

This commit is contained in:
msukkari 2025-02-28 14:29:38 -08:00
parent 8f6052c8e1
commit 409344248c

View file

@ -253,7 +253,7 @@ export const SearchBar = ({
<CodeMirror
ref={editorRef}
className="overflow-x-auto scrollbar-hide w-full"
placeholder={isHistorySearchEnabled ? "Filter history..." : "Search..."}
placeholder={isHistorySearchEnabled ? "Filter history..." : "Search (/) through repos..."}
value={query}
onChange={(value) => {
setQuery(value);
@ -267,7 +267,6 @@ export const SearchBar = ({
indentWithTab={false}
autoFocus={autoFocus ?? false}
/>
<KeyboardShortcutHint shortcut="/" />
<SearchSuggestionsBox
ref={suggestionBoxRef}
query={query}