From dcc7b70e1c77c11184e6606db058f30c95ca1ac9 Mon Sep 17 00:00:00 2001 From: Ashesh <3626859+Ashesh3@users.noreply.github.com> Date: Wed, 6 Sep 2023 13:35:44 +0530 Subject: [PATCH] Fix casing of plausible goal properties (#6229) --- src/Components/Facility/ConsultationDetails.tsx | 2 +- src/Components/Patient/PatientHome.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/Facility/ConsultationDetails.tsx b/src/Components/Facility/ConsultationDetails.tsx index 257d3712544..6aa7b683ab5 100644 --- a/src/Components/Facility/ConsultationDetails.tsx +++ b/src/Components/Facility/ConsultationDetails.tsx @@ -226,7 +226,7 @@ export const ConsultationDetails = (props: any) => { triggerGoal("Patient Consultation Viewed", { facilityId: facilityId, consultationId: consultationId, - userID: authUser.id, + userId: authUser.id, }); }, []); diff --git a/src/Components/Patient/PatientHome.tsx b/src/Components/Patient/PatientHome.tsx index e8a666459a8..2565bce64ba 100644 --- a/src/Components/Patient/PatientHome.tsx +++ b/src/Components/Patient/PatientHome.tsx @@ -222,7 +222,7 @@ export const PatientHome = (props: any) => { fetchpatient(status); triggerGoal("Patient Profile Viewed", { facilityId: facilityId, - userID: authUser.id, + userId: authUser.id, }); }, [dispatch, fetchpatient]