Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
fix: fix step component error
Browse files Browse the repository at this point in the history
Signed-off-by: csonchen <cson_chensheng@163.com>
  • Loading branch information
csonchen committed Sep 27, 2023
1 parent 3024579 commit 7f48214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Steps/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const Steps: React.FC<StepsProps> = props => {
count={!showIcon ? (stepCount ? stepCount : index + 1) : ''}
size={iconSize}
status={iconStatus}
text={stepLabel}
/>
{stepLabel}
{index !== steps.length - 1 && <Icon type="arrow-right-line" size={12} />}
</div>
);
Expand Down

0 comments on commit 7f48214

Please sign in to comment.