Skip to content

Commit

Permalink
Merge branch 'main' into 72-feature-add-all-axis-exercises-from-figma
Browse files Browse the repository at this point in the history
  • Loading branch information
jpaten authored Feb 28, 2024
2 parents 944523a + 3c3ddc7 commit d926a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shared/LessonSide/LevelSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function LevelSelector({
<div
className="level-connector"
style={{
visibility: level < 6 ? 'visible' : 'hidden',
visibility: level < maxLevelReached ? 'visible' : 'hidden',
}}
></div>
);
Expand Down

0 comments on commit d926a30

Please sign in to comment.