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>
)} )}
</div> </div>
{(categoriesData as Category[]).map((category, i) => ( {(categoriesData as Category[]).map((category) => {
const name =
typeof category === 'string' ? category : category.name
return (
<CategoryCheckbox <CategoryCheckbox
key={`${category.name}_${i}`} key={name}
inputValue={inputValue} inputValue={inputValue}
category={category} category={category}
path={[category.name]} path={[name]}
handleSingleSelection={handleSingleSelection} handleSingleSelection={handleSingleSelection}
handleCombinationSelection={handleCombinationSelection} handleCombinationSelection={
handleCombinationSelection
}
selectedSingles={filterCategories} selectedSingles={filterCategories}
selectedCombinations={filterHierarchies} selectedCombinations={filterHierarchies}
/> />
))} )
})}
</div> </div>
</div> </div>
<div <div