-
Notifications
You must be signed in to change notification settings - Fork 223
fix(recommend): remove unused trendingFacets props #1433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ dist | |
*.umd.js | ||
yarn-error.log | ||
.env | ||
|
||
.idea/ | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
import { TrendingQuery } from './TrendingQuery'; | ||
|
||
export type TrendingFacetsQuery = Omit<TrendingQuery, 'model' | 'facetValue'>; | ||
export type TrendingFacetsQuery = Omit< | ||
TrendingQuery, | ||
'model' | 'facetValue' | 'fallbackParameters' | 'queryParameters' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. At this point why have a shared According to the API endpoints:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah that's a good point There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, i wanted to do that in a separate PR, both for client and for the libs |
||
>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make a separate PR for this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it probably should just be reverted actually, local files should be in a global gitignore