diff --git a/src/components/cost-estimator/step-9-additional-features.tsx b/src/components/cost-estimator/step-9-additional-features.tsx index fa8192c..2496517 100644 --- a/src/components/cost-estimator/step-9-additional-features.tsx +++ b/src/components/cost-estimator/step-9-additional-features.tsx @@ -83,9 +83,9 @@ export function Step9AdditionalFeatures({ onNext, onBack, onUpdateData, formData

Would you like us to develop any additional features?

{features.map((feature) => ( -
handleSelect(feature.id)} + htmlFor={feature.id} className={`flex items-center space-x-3 rounded-lg border p-4 cursor-pointer transition-all ${selectedFeatures.includes(feature.id) ? 'border-primary bg-primary/5' : 'border-border'}`} > handleSelect(feature.id)} /> - + {feature.label} - @@ -106,7 +106,7 @@ export function Step9AdditionalFeatures({ onNext, onBack, onUpdateData, formData -
+ ))}