Skip to content

Commit

Permalink
fix(web): adapt the step number to the new steps
Browse files Browse the repository at this point in the history
  • Loading branch information
imobachgs committed Nov 21, 2024
1 parent 6c629c1 commit f95c0e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/core/ProgressReport.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const Progress = ({ steps, step, firstStep, detail }) => {
)}
{steps.map((description: StepProps["description"], idx: number) => {
return (
<ProgressStep key={idx} {...stepProperties(idx + 1)}>
<ProgressStep key={idx} {...stepProperties(idx)}>
{description}
</ProgressStep>
);
Expand Down

0 comments on commit f95c0e9

Please sign in to comment.