We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e42ff8a commit 6482968Copy full SHA for 6482968
src/components/patient-details/patientInfo.jsx
@@ -77,7 +77,7 @@ const PatientInfo = (props) => {
77
if(patient?.phoneNumber !== undefined)
78
return patient.phoneNumber;
79
const mobileIdentifier = patient.identifiers.find(identifier => {
80
- return identifier.type === 'MOBILE';
+ return identifier.type === 'MOBILE' || identifier.type === 'MR';
81
});
82
83
return mobileIdentifier ? mobileIdentifier.value : '-';
0 commit comments