Implement select for command palette

This commit is contained in:
Gregory Schier
2024-03-19 17:24:57 -07:00
parent 25de5460ad
commit 8d24e8c282
2 changed files with 79 additions and 21 deletions

View File

@@ -18,7 +18,7 @@ export function useCommandPalette() {
hideX: true,
noPadding: true,
noScroll: true,
render: () => <CommandPalette />,
render: ({ hide }) => <CommandPalette onClose={hide} />,
});
});
}