We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent360abec commitd964c3eCopy full SHA for d964c3e
web-app/src/components/Stage/index.tsx
@@ -38,8 +38,6 @@ const Stage = ({ stage, steps, onNextStage, complete }: Props) => {
38
constactiveIndex=stepList.findIndex((stepId:string)=>{
39
returnsteps[stepId].status.active
40
})
41
-// only display up until the active step
42
-constfilteredStepList=stepList.slice(0,activeIndex+1)
43
return(
44
<divstyle={styles.card}>
45
<divstyle={styles.content}>
@@ -48,7 +46,7 @@ const Stage = ({ stage, steps, onNextStage, complete }: Props) => {
48
46
</div>
49
47
<divstyle={styles.steps}>
50
<Stepcurrent={activeIndex}direction="ver"shape="dot"animationreadOnly>
51
-{filteredStepList.map((stepId:string,index:number)=>{
+{stepList.map((stepId:string,index:number)=>{
52
conststep=steps[stepId]
53
54
<Step.Item