diff --git a/src/components/organisms/FuneralFinder/FuneralFinderV2.tsx b/src/components/organisms/FuneralFinder/FuneralFinderV2.tsx index 7a6750c..daedde2 100644 --- a/src/components/organisms/FuneralFinder/FuneralFinderV2.tsx +++ b/src/components/organisms/FuneralFinder/FuneralFinderV2.tsx @@ -77,13 +77,17 @@ const STEP_CIRCLE_SIZE = 48; function StepCircle({ step, completed, + active = false, showConnector = false, }: { step: number; completed: boolean; + /** Use primary brand fill even when not completed (for the first/always-active step) */ + active?: boolean; /** Show a vertical connector line below this circle to the next step */ showConnector?: boolean; }) { + const usePrimary = completed || active; return ( {/* Step 1: I'm looking to */} - + I’m looking to… @@ -421,6 +425,7 @@ export const FuneralFinderV2 = React.forwardRef