Skip to content

Commit

Permalink
Fixes patient profile created date showing modified date (#9309)
Browse files Browse the repository at this point in the history
  • Loading branch information
SwanandBhuskute authored Dec 6, 2024
1 parent a24b9ca commit ee725b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Patient/PatientHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -664,8 +664,8 @@ export const PatientHome = (props: {
? formatDateTime(patientData.created_date)
: "--:--"}
</span>
{patientData.modified_date
? relativeDate(patientData.modified_date)
{patientData.created_date
? relativeDate(patientData.created_date)
: "--:--"}
</div>
</div>
Expand Down

0 comments on commit ee725b0

Please sign in to comment.