Skip to content

Commit

Permalink
hide default spec elements for self service challenges
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasKranitsas committed Jan 31, 2022
1 parent bd8d73a commit 8726809
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export default function ChallengeDetailsView(props) {
reviewScorecardId,
screeningScorecardId,
forumId,
selfService,
} = legacy;

let stockArtValue = '';
Expand Down Expand Up @@ -173,7 +174,7 @@ export default function ChallengeDetailsView(props) {
<div styleName="challenge-specifications">
<div styleName={`challenge-specs-main ${accentedStyle}`}>
{
track.toLowerCase() !== 'design'
track.toLowerCase() !== 'design' && !selfService
? (
<div>
{
Expand Down

0 comments on commit 8726809

Please sign in to comment.