Skip to content

Commit 6482968

Browse files
Add. display mobile number which is of type MR
1 parent e42ff8a commit 6482968

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/patient-details/patientInfo.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const PatientInfo = (props) => {
7777
if(patient?.phoneNumber !== undefined)
7878
return patient.phoneNumber;
7979
const mobileIdentifier = patient.identifiers.find(identifier => {
80-
return identifier.type === 'MOBILE';
80+
return identifier.type === 'MOBILE' || identifier.type === 'MR';
8181
});
8282

8383
return mobileIdentifier ? mobileIdentifier.value : '-';

0 commit comments

Comments
 (0)