diff --git a/apps/web/src/components/tutorial/TutorialPlayer.tsx b/apps/web/src/components/tutorial/TutorialPlayer.tsx index 132a8b69..92ca20fd 100644 --- a/apps/web/src/components/tutorial/TutorialPlayer.tsx +++ b/apps/web/src/components/tutorial/TutorialPlayer.tsx @@ -834,6 +834,10 @@ export function TutorialPlayer({ const mathTerm = expectedSteps[index]?.mathematicalTerm const isCurrentStep = index === currentMultiStep + // Get the target value for this step to check if we need to show "Next Action" + const stepTargetValue = expectedSteps[index]?.targetValue + const needsAction = isCurrentStep && currentStepSummary && currentValue !== stepTargetValue + return (