Skip to content

Commit

Permalink
RC #291 - Updating FacetStateContextProvider to remove range values f…
Browse files Browse the repository at this point in the history
…rom list facets
  • Loading branch information
dleadbetter committed Aug 15, 2024
1 parent ca29bee commit 08495be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const FacetStateContextProvider = (props: Props) => {
* Memo-ize the refinement list facets.
*/
const listFacets = useMemo(() => (
_.filter(facets, (field: any) => field.facet && field.type !== TYPE_AUTO)
_.filter(facets, (field: any) => field.facet && field.type !== TYPE_AUTO && field.type !== TYPE_INT_ARRAY)
), [facets]);

/**
Expand Down

0 comments on commit 08495be

Please sign in to comment.