Skip to content

Commit

Permalink
Arjun | Update Keys for Patient Dashboard locales
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjun-Go committed Sep 27, 2024
1 parent 7ec721d commit c743efe
Showing 1 changed file with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,20 @@ export const PatientHeader = (props) => {
<FormattedMessage id="HIDE_PATIENT_DETAILS" defaultMessage="Hide Details" />
);
const patientDetailsHeaders = {
address: <FormattedMessage id={"Address"} defaultMessage={"Address"} />,
address: (
<FormattedMessage id={"ADDRESS_HEADER"} defaultMessage={"Address"} />
),
contactDetails: (
<FormattedMessage
id={"Contact Details"}
id={"CONTACT_DETAILS_HEADER"}
defaultMessage={"Contact Details"}
/>
),
relationships: (
<FormattedMessage id={"Relationships"} defaultMessage={"Relationships"} />
<FormattedMessage
id={"RELATIONSHIPS_HEADER"}
defaultMessage={"Relationships"}
/>
),
};
const visitSummaryMessage = (
Expand Down Expand Up @@ -135,7 +140,11 @@ export const PatientHeader = (props) => {
<>
<Grid>
<Row className="patient-image-and-details">
<img className={"patient-image"} src={profilePicture} alt="patient-image"/>
<img
className={"patient-image"}
src={profilePicture}
alt="patient-image"
/>
<Column>
<Row className="header-title-row">
<div className="patient-name-and-navigations">
Expand Down

0 comments on commit c743efe

Please sign in to comment.