From 2d2d283588325d3b50026f5d3c2fccbdf430d0e8 Mon Sep 17 00:00:00 2001 From: Leon Serfaty G Date: Fri, 18 Jul 2025 04:43:55 +0000 Subject: [PATCH] on this step , make the whole box clickable ... not just the checkbox --- .../cost-estimator/step-9-additional-features.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 -
+ ))}