diff --git a/src/components/admin/RideModelForm.tsx b/src/components/admin/RideModelForm.tsx index bf43c92f..7343aa61 100644 --- a/src/components/admin/RideModelForm.tsx +++ b/src/components/admin/RideModelForm.tsx @@ -45,7 +45,7 @@ type RideModelFormData = z.infer; interface RideModelFormProps { manufacturerName: string; manufacturerId?: string; - onSubmit: (data: RideModelFormData & { _technical_specifications?: TechnicalSpecification[] }) => void; + onSubmit: (data: RideModelFormData & { manufacturer_id?: string; _technical_specifications?: TechnicalSpecification[] }) => void; onCancel: () => void; initialData?: Partial