Skip to content

Commit

Permalink
fix(recommend): remove unused trendingFacets props (#1433)
Browse files Browse the repository at this point in the history
* fix: remove unused props for trending facets

* fix lint

* revert changes to gitignore file
  • Loading branch information
marialungu committed Dec 16, 2022
1 parent ba59b68 commit ffbfc05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/recommend/src/types/TrendingFacetsQuery.ts
@@ -1,3 +1,6 @@
import { TrendingQuery } from './TrendingQuery';

export type TrendingFacetsQuery = Omit<TrendingQuery, 'model' | 'facetValue'>;
export type TrendingFacetsQuery = Omit<
TrendingQuery,
'model' | 'facetValue' | 'fallbackParameters' | 'queryParameters'
>;

0 comments on commit ffbfc05

Please sign in to comment.