{patient.birthDate && (
<>
{age(patient.birthDate)}
·
{formatDate(parseDate(patient.birthDate))}
·
>
)}
{t('CRNumber', 'CR Number')}: {crNumber || '--'}
{((crNumber && crNumber !== '--') || shouldShowEligibilitySection) && (
·
)}
{shouldShowEligibilitySection && (
{isEligibilityLoading ? (
) : (
eligibilityTags.map((tag, index) => (
{tag.text}
))
)}
)}