categories,18popup,clear.TextEditorSwap,GameCardHover #177

Merged
freakoverse merged 64 commits from staging into master 2024-12-24 19:44:30 +00:00
Showing only changes of commit 49b3ce4205 - Show all commits

View File

@ -252,18 +252,24 @@ export const CategoryFilterPopup = ({
</div>
)}
</div>
{(categoriesData as Category[]).map((category, i) => (
<CategoryCheckbox
key={`${category.name}_${i}`}
inputValue={inputValue}
category={category}
path={[category.name]}
handleSingleSelection={handleSingleSelection}
handleCombinationSelection={handleCombinationSelection}
selectedSingles={filterCategories}
selectedCombinations={filterHierarchies}
/>
))}
{(categoriesData as Category[]).map((category) => {
const name =
typeof category === 'string' ? category : category.name
return (
<CategoryCheckbox
key={name}
inputValue={inputValue}
category={category}
path={[name]}
handleSingleSelection={handleSingleSelection}
handleCombinationSelection={
handleCombinationSelection
}
selectedSingles={filterCategories}
selectedCombinations={filterHierarchies}
/>
)
})}
</div>
</div>
<div