diff --git a/src/components/wizard/StepIndicator.tsx b/src/components/wizard/StepIndicator.tsx index c5a3780..8ce91ed 100644 --- a/src/components/wizard/StepIndicator.tsx +++ b/src/components/wizard/StepIndicator.tsx @@ -1,6 +1,7 @@ // src/components/wizard/StepIndicator.tsx -// Breadcrumb navigation — 1.Backend > 2.Remote Config > 3.Deployment > 4.Review -// Completed steps are clickable. Clicking step 0 also clears remote.params (SET_REMOTE_PARAMS({})). +// MD3 visual step indicator — numbered circles with connector lines. +// Completed steps show checkmark and are clickable buttons. +// Clicking step 0 dispatches SET_REMOTE_PARAMS({}) then SET_STEP(0) to reset remote params. // CRITICAL: never dispatches RESET — deployment options must be preserved on back navigation. import { useWizard } from '../../store/context'; @@ -22,33 +23,55 @@ export function StepIndicator() { return ( ); }