Skip to content

Commit

Permalink
fix: query & searchQuery where mixed
Browse files Browse the repository at this point in the history
  • Loading branch information
e-krebs committed Jan 2, 2025
1 parent 3ce2711 commit b48046e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/algoliasearch-helper/src/algoliasearch.helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -499,9 +499,9 @@ AlgoliaSearchHelper.prototype.searchForCompositionFacetValues = function (
facetName: facet,
searchForFacetValuesRequest: {
params: {
query: state.query,
query: query,
maxFacetHits: maxFacetHits,
searchQuery: { query: query },
searchQuery: requestBuilder._getCompositionHitsSearchParams(state),
},
},
});
Expand Down

0 comments on commit b48046e

Please sign in to comment.