diff --git a/src/components/hooks/facets/useFacets.tsx b/src/components/hooks/facets/useFacets.tsx index 59d5485ec..94630b868 100644 --- a/src/components/hooks/facets/useFacets.tsx +++ b/src/components/hooks/facets/useFacets.tsx @@ -5,7 +5,6 @@ import useSWR from 'swr' const useFacets = (options: QueryFacetsArgs) => { const { data, isValidating, ...rest } = useSWR([getAllFacetsQuery, options], gglFetcher) - console.log("here", data) return { items: data?.facets.items, totalItems: data?.facets.totalItems, loading: isValidating, ...rest } }