Skip to content

Commit

Permalink
Remove filterId
Browse files Browse the repository at this point in the history
  • Loading branch information
nmanu1 committed Nov 17, 2021
1 parent f703365 commit b29683a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sample-app/src/components/FilterSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default function FilterSearch (props: FilterSearchProps): JSX.Element {
if (sectionIndex !== undefined && optionIndex !== undefined && results) {
const option = results.sections[sectionIndex].results[optionIndex];
if (option.filter) {
answersActions.setFilterOption({ ...option.filter, selected: true }, 'someFiltersSearchId');
answersActions.setFilterOption({ ...option.filter, selected: true });
answersActions.executeVerticalQuery();
setMessage('enter!');
}
Expand Down

0 comments on commit b29683a

Please sign in to comment.