Debounce autocomplete

This commit is contained in:
Gregory Schier
2023-03-08 11:25:20 -08:00
parent 6eaad1352a
commit 571293a34d
12 changed files with 117 additions and 33 deletions

View File

@@ -22,7 +22,6 @@ export function Sidebar({ className, activeRequestId, workspaceId, requests, ...
const createRequest = useRequestCreate({ workspaceId, navigateAfter: true });
const { appearance, toggleAppearance } = useTheme();
const [open, setOpen] = useState<boolean>(false);
console.log('OPEN', open);
return (
<div
className={classnames(className, 'w-52 bg-gray-100 h-full border-r border-gray-200')}