From d54831b1e6374ce7d954c428bcd0770986c251b4 Mon Sep 17 00:00:00 2001 From: sonika <> Date: Tue, 22 Aug 2023 13:35:32 +0530 Subject: [PATCH] required change --- src/Components/PatientForm/PersonalSection1.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Components/PatientForm/PersonalSection1.tsx b/src/Components/PatientForm/PersonalSection1.tsx index 5d2db9b..87b2686 100644 --- a/src/Components/PatientForm/PersonalSection1.tsx +++ b/src/Components/PatientForm/PersonalSection1.tsx @@ -10,7 +10,7 @@ interface Patient { homePhone: string; cellPhone: string; email: string; - age: number; + age: number | string; dateOfBirth: string; socialSecurityNumber: string; mailingAddress: string; @@ -60,7 +60,7 @@ export default function PersonalSection(){ homePhone: "", cellPhone: "", email: "", - age: 0, + age: "", dateOfBirth: "", socialSecurityNumber: "", mailingAddress:"", @@ -148,7 +148,8 @@ export default function PersonalSection(){