Skip to content

Commit 23ab6b6

Browse files
committed
fix complete button toggle
1 parent 7804d04 commit 23ab6b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-app/src/containers/Tutorial/StagePage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const StagePage = (props: PageProps) => {
2525
...data.steps[stepId],
2626
status: {
2727
// flag progressed steps as complete
28-
complete: progress.steps[stepId] || false,
28+
complete: progress.stages[stageId] || false,
2929
// set active step to active
3030
active: position.stepId === stepId,
3131
},

0 commit comments

Comments
 (0)