diff --git a/ui/desktop/src/components/conversation/SearchView.tsx b/ui/desktop/src/components/conversation/SearchView.tsx index 22cd7fcd..f97e44a9 100644 --- a/ui/desktop/src/components/conversation/SearchView.tsx +++ b/ui/desktop/src/components/conversation/SearchView.tsx @@ -32,19 +32,21 @@ export const SearchView: React.FC> = ({ const highlighterRef = React.useRef(null); const containerRef = React.useRef(null); - useEffect(() => { - const handleKeyDown = (e: KeyboardEvent) => { - if ((e.metaKey || e.ctrlKey) && e.key === 'f') { - e.preventDefault(); - setIsSearchVisible(true); - } - }; - - window.addEventListener('keydown', handleKeyDown); - return () => { - window.removeEventListener('keydown', handleKeyDown); - }; - }, []); + // temporarily disabling search for launch until issue https://github.com/block/goose/issues/1984 is resolved + // + // useEffect(() => { + // const handleKeyDown = (e: KeyboardEvent) => { + // if ((e.metaKey || e.ctrlKey) && e.key === 'f') { + // e.preventDefault(); + // setIsSearchVisible(true); + // } + // }; + // + // window.addEventListener('keydown', handleKeyDown); + // return () => { + // window.removeEventListener('keydown', handleKeyDown); + // }; + // }, []); const handleSearch = (term: string, caseSensitive: boolean) => { if (!term) {