diff --git a/src/components/databrowser/hooks/use-keys.tsx b/src/components/databrowser/hooks/use-keys.tsx index f885ce9..25c4f70 100644 --- a/src/components/databrowser/hooks/use-keys.tsx +++ b/src/components/databrowser/hooks/use-keys.tsx @@ -27,7 +27,7 @@ export const KeysProvider = ({ children }: PropsWithChildren) => { const { search } = useDatabrowserStore() const cleanSearchKey = search.key.replace("*", "") - const { data: exactMatchType, isFetching } = useFetchKeyType(cleanSearchKey) + const { data: exactMatchType, isFetching, isLoading } = useFetchKeyType(cleanSearchKey) const { fetchKeys, resetCache } = useFetchKeys(search) const pageRef = useRef(0) @@ -85,7 +85,12 @@ export const KeysProvider = ({ children }: PropsWithChildren) => {