Skip to content

Commit 90d498e

Browse files
committed
fix(challenge-detail): show Thrive Articles for all challenges
1 parent 3c91974 commit 90d498e

File tree

1 file changed

+1
-2
lines changed
  • src/shared/containers/challenge-detail

1 file changed

+1
-2
lines changed

src/shared/containers/challenge-detail/index.jsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,7 @@ class ChallengeDetailPageContainer extends React.Component {
243243
reloadChallengeDetails(nextProps.auth, challengeId);
244244
}
245245

246-
const { track } = nextProps.challenge;
247-
if (track === COMPETITION_TRACKS.DESIGN && thriveArticles.length === 0) {
246+
if (thriveArticles.length === 0) {
248247
// filter all tags with value 'Other'
249248
const tags = _.filter(nextProps.challenge.tags, tag => tag !== 'Other');
250249
if (tags.length > 0) {

0 commit comments

Comments
 (0)