Skip to content

Commit

Permalink
chore: added phone numbers to patient details
Browse files Browse the repository at this point in the history
  • Loading branch information
elektracodes committed Nov 10, 2023
1 parent 840079d commit ee4adcd
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,22 @@ const GeneralInformation: React.FC<Props> = ({ patient, hospital }) => {
locked
value={hospitalPatientID}
/>
<TextField
id="patient_phone_number_1"
label="Patient Phone number 1"
styleType="outlined"
size="md"
locked
value={patient?.phone_1}
/>
<TextField
id="patient_phone_number_2"
label="Patient Phone number 2"
styleType="outlined"
size="md"
locked
value={patient?.phone_2}
/>
</Container>
);
};
Expand Down

0 comments on commit ee4adcd

Please sign in to comment.