Skip to content

Commit ed88f51

Browse files
committed
Merge pull request #4824 from narekcat/issue-4727
fix: for issue #4727
1 parent f6de196 commit ed88f51

File tree

1 file changed

+1
-1
lines changed
  • src/shared/components/challenge-detail/Specification

1 file changed

+1
-1
lines changed

src/shared/components/challenge-detail/Specification/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default function ChallengeDetailsView(props) {
8585
let isWipro = false;
8686
const wiproCommunity = communitiesList.find(x => x.communityId === 'wipro');
8787
if (wiproCommunity && groups) {
88-
isWipro = wiproCommunity.groupIds.some(id => groups[id]);
88+
isWipro = wiproCommunity.groupIds.some(id => groups.includes(id));
8989
}
9090

9191
let accentedStyle = '';

0 commit comments

Comments
 (0)