Skip to content

Commit

Permalink
(fix) Fixup demographics section styling in patient banner
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen committed Sep 17, 2024
1 parent 05b9bcc commit d09603d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ export function PatientBannerPatientInfo({ patient }: PatientBannerPatientInfoPr
<span>{gender}</span>
{patient.birthDate && (
<>
&middot; <span>{age(patient.birthDate)}</span>
&middot; <span>{formatDate(parseDate(patient.birthDate), { mode: 'wide', time: false })}</span>
<span className={styles.separator}>&middot;</span>
<span>{age(patient.birthDate)}</span>
<span className={styles.separator}>&middot;</span>
<span>{formatDate(parseDate(patient.birthDate), { mode: 'wide', time: false })}</span>
</>
)}
</div>
Expand Down

0 comments on commit d09603d

Please sign in to comment.