Skip to content

Commit 5f597b3

Browse files
committed
Remove On Demand hard-coded tag for self service / Phoenix challenges (TOP-1177)
1 parent 8623fdd commit 5f597b3

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

src/shared/components/challenge-detail/Header/ChallengeTags.jsx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,6 @@ export default function ChallengeTags(props) {
105105
</div>
106106
))
107107
}
108-
{
109-
isSelfService && (
110-
<div styleName="tag">
111-
<DevelopmentTrackTag>
112-
<span>On Demand</span>
113-
</DevelopmentTrackTag>
114-
</div>
115-
)
116-
}
117108
{
118109
tags.map(tag => (
119110
tag

src/shared/components/challenge-listing/ChallengeCard/index.jsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,6 @@ function ChallengeCard({
107107
/>
108108
)
109109
}
110-
{
111-
_.get(challenge, 'legacy.selfService') && (
112-
<DevelopmentTrackTag>
113-
<span>On Demand</span>
114-
</DevelopmentTrackTag>
115-
)
116-
}
117110
{ !isRecommendedChallenge
118111
&& (challenge.tags.length + skills.length) > 0
119112
&& (

0 commit comments

Comments
 (0)