Skip to content

Commit

Permalink
fix challenge completion indicator (#2457)
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinBeczak authored Oct 3, 2024
1 parent 45b11c8 commit c5c5998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ChallengeProgress/ChallengeProgress.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export class ChallengeProgress extends Component {
tooltip={(input) => <ProgressTooltip input={input} />}
theme={theme(this.props.lightMode)}
/>
{taskActions.total > 0 && taskActions.available === 0 &&
{taskActions.total > 0 && taskActions.available === 0 && taskActions.skipped === 0 &&
<SvgSymbol
sym='check-icon'
viewBox='0 0 20 20'
Expand Down

0 comments on commit c5c5998

Please sign in to comment.