Command menu search bar (#4337)

* Improve performance on findMany queries

* Fix

* Fix command menu not emptying the search on toggle

* Fix tests
This commit is contained in:
Charles Bochet
2024-03-06 14:20:05 +01:00
committed by GitHub
parent e7857d7fa3
commit b08b361dc0
4 changed files with 59 additions and 113 deletions

View File

@ -0,0 +1,6 @@
import { atom } from 'recoil';
export const commandMenuSearchState = atom<string>({
key: 'command-menu/commandMenuSearchState',
default: '',
});