From ee725b05044cebe86e5aa710b691a4cce1dfc9f7 Mon Sep 17 00:00:00 2001 From: Swanand Shekhar Bhuskute <103440604+SwanandBhuskute@users.noreply.github.com> Date: Fri, 6 Dec 2024 08:16:19 +0530 Subject: [PATCH] Fixes patient profile created date showing modified date (#9309) --- src/components/Patient/PatientHome.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Patient/PatientHome.tsx b/src/components/Patient/PatientHome.tsx index 518ac33bdf2..a63f3202f98 100644 --- a/src/components/Patient/PatientHome.tsx +++ b/src/components/Patient/PatientHome.tsx @@ -664,8 +664,8 @@ export const PatientHome = (props: { ? formatDateTime(patientData.created_date) : "--:--"} - {patientData.modified_date - ? relativeDate(patientData.modified_date) + {patientData.created_date + ? relativeDate(patientData.created_date) : "--:--"}