Skip to content

Commit b5b3061

Browse files
authored
Merge pull request #4824 from narekcat/issue-4727
fix: for issue #4727
2 parents bc3ad8e + b6d1097 commit b5b3061

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
@@ -84,7 +84,7 @@ export default function ChallengeDetailsView(props) {
8484
let isWipro = false;
8585
const wiproCommunity = communitiesList.find(x => x.communityId === 'wipro');
8686
if (wiproCommunity && groups) {
87-
isWipro = wiproCommunity.groupIds.some(id => groups[id]);
87+
isWipro = wiproCommunity.groupIds.some(id => groups.includes(id));
8888
}
8989

9090
let accentedStyle = '';

0 commit comments

Comments
 (0)