Skip to content

Commit 79ef6ce

Browse files
Fix TCO not showing in Challenge Listing filter
1 parent ed10471 commit 79ef6ce

File tree

1 file changed

+1
-1
lines changed
  • src/shared/components/challenge-listing/Filters/FiltersPanel

1 file changed

+1
-1
lines changed

src/shared/components/challenge-listing/Filters/FiltersPanel/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export default function FiltersPanel({
193193
};
194194

195195
const communityOps = communityFilters.filter(community => (
196-
(!community.hidden && !community.hideFilter && !_.isEmpty(community.groupIds)) || community.communityName === 'All'
196+
(!community.hidden && !community.hideFilter) || community.communityName === 'All'
197197
))
198198
.map(community => ({
199199
label: community.communityName,

0 commit comments

Comments
 (0)