diff --git a/app/src/components/pilotForm/PilotForm.tsx b/app/src/components/pilotForm/PilotForm.tsx index b588685..b3e3c4c 100644 --- a/app/src/components/pilotForm/PilotForm.tsx +++ b/app/src/components/pilotForm/PilotForm.tsx @@ -33,6 +33,7 @@ interface PilotFormSchema { postalCode: string; email: string; phone: string; + lastReview: string; certificates: IPilotFormCertificates[]; endorsements: IPilotFormEndorsements[]; medicalClass: string; @@ -48,6 +49,7 @@ const schema = z.object({ postalCode: z.string(), email: z.string(), phone: z.string(), + lastReview: z.string(), // certificates: z.array(), // endorsements: z.array(), medicalClass: z.string(),