Skip to content

Commit

Permalink
Issue #688: reverted filter to true in FilterCategory.tsx and FilterC…
Browse files Browse the repository at this point in the history
…ategoryDynamic.tsx
  • Loading branch information
danielecalda committed Nov 2, 2023
1 parent 3ea8f92 commit 91e5e5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ function FilterCategory({
{result.map((suggestion, index) => {
const asSearchToken = mapSuggestionToSearchToken(
suggestion,
false,
true,
);

const isChecked = tokens.some((searchToken) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function FilterCategoryDynamic({
{filters.map((suggestion, index) => {
const asSearchToken = mapSuggestionToSearchToken(
suggestion,
false,
true,
);
const isChecked = tokens.some((searchToken) => {
if (
Expand Down

0 comments on commit 91e5e5c

Please sign in to comment.