diff --git a/tradein-mvp/frontend/src/components/trade-in/v2/LeadForm.tsx b/tradein-mvp/frontend/src/components/trade-in/v2/LeadForm.tsx index 17e953d4..3aeb5484 100644 --- a/tradein-mvp/frontend/src/components/trade-in/v2/LeadForm.tsx +++ b/tradein-mvp/frontend/src/components/trade-in/v2/LeadForm.tsx @@ -264,6 +264,7 @@ export function LeadForm({ estimateId }: LeadFormProps) { type="submit" className="lf-submit-btn" disabled={leadMutation.isPending} + aria-disabled={canSubmit ? undefined : true} style={{ height: 36, flex: "0 0 auto", @@ -339,5 +340,3 @@ export function LeadForm({ estimateId }: LeadFormProps) { ); } - -export default LeadForm;