required change
This commit is contained in:
parent
6cfc963130
commit
d54831b1e6
@ -10,7 +10,7 @@ interface Patient {
|
|||||||
homePhone: string;
|
homePhone: string;
|
||||||
cellPhone: string;
|
cellPhone: string;
|
||||||
email: string;
|
email: string;
|
||||||
age: number;
|
age: number | string;
|
||||||
dateOfBirth: string;
|
dateOfBirth: string;
|
||||||
socialSecurityNumber: string;
|
socialSecurityNumber: string;
|
||||||
mailingAddress: string;
|
mailingAddress: string;
|
||||||
@ -60,7 +60,7 @@ export default function PersonalSection(){
|
|||||||
homePhone: "",
|
homePhone: "",
|
||||||
cellPhone: "",
|
cellPhone: "",
|
||||||
email: "",
|
email: "",
|
||||||
age: 0,
|
age: "",
|
||||||
dateOfBirth: "",
|
dateOfBirth: "",
|
||||||
socialSecurityNumber: "",
|
socialSecurityNumber: "",
|
||||||
mailingAddress:"",
|
mailingAddress:"",
|
||||||
@ -148,6 +148,7 @@ export default function PersonalSection(){
|
|||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={4} className='collapsable-form-style'>
|
<Grid item xs={4} className='collapsable-form-style'>
|
||||||
<TextField
|
<TextField
|
||||||
|
required
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
label="Age"
|
label="Age"
|
||||||
name="age"
|
name="age"
|
||||||
@ -191,6 +192,7 @@ export default function PersonalSection(){
|
|||||||
|
|
||||||
<Grid item xs={4} className='collapsable-form-style'>
|
<Grid item xs={4} className='collapsable-form-style'>
|
||||||
<TextField
|
<TextField
|
||||||
|
required
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
label="Mailing Address"
|
label="Mailing Address"
|
||||||
name="mailingAddress"
|
name="mailingAddress"
|
||||||
@ -217,6 +219,7 @@ export default function PersonalSection(){
|
|||||||
|
|
||||||
<Grid item xs={4} className='collapsable-form-style'>
|
<Grid item xs={4} className='collapsable-form-style'>
|
||||||
<TextField
|
<TextField
|
||||||
|
required
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
label="City"
|
label="City"
|
||||||
name="city"
|
name="city"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user