refactor(app): switch to @phosphor-icons/core and format files

This commit is contained in:
rektdeckard
2023-01-08 02:10:49 -07:00
parent b708d823a7
commit 2a030b08cd
16 changed files with 66 additions and 10426 deletions

View File

@@ -19,7 +19,8 @@ type SearchInputProps = {};
const SearchInput: React.FC<SearchInputProps> = () => {
const [value, setValue] = useState<string>("");
const [query, setQuery] = useRecoilState(searchQueryAtom);
const inputRef = useRef<HTMLInputElement>() as MutableRefObject<HTMLInputElement>;
const inputRef =
useRef<HTMLInputElement>() as MutableRefObject<HTMLInputElement>;
useHotkeys("ctrl+k,cmd+k", (e) => {
e.preventDefault();