Skip to content

Commit

Permalink
refactor(StepsStep): rename className of step
Browse files Browse the repository at this point in the history
  • Loading branch information
belk1ng committed Nov 15, 2024
1 parent a4bac35 commit a78e779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Steps/StepsStep/StepsStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const StepsStep = React.forwardRef<HTMLButtonElement, Props>(
{completed ? (
<IconCheck className={cnStepsStep('Icon')} size={iconSize} />
) : (
<span className={cnStepsStep('Index')}>{step}</span>
<span className={cnStepsStep('StepIndex')}>{step}</span>
)}
<span>{label}</span>
</button>
Expand Down

0 comments on commit a78e779

Please sign in to comment.