Skip to content

Commit

Permalink
Fix casing of plausible goal properties (ohcnetwork#6229)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashesh3 authored Sep 6, 2023
1 parent 55c0ae0 commit dcc7b70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Components/Facility/ConsultationDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export const ConsultationDetails = (props: any) => {
triggerGoal("Patient Consultation Viewed", {
facilityId: facilityId,
consultationId: consultationId,
userID: authUser.id,
userId: authUser.id,
});
}, []);

Expand Down
2 changes: 1 addition & 1 deletion src/Components/Patient/PatientHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit dcc7b70

Please sign in to comment.