Skip to content

Commit

Permalink
fix cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Oct 8, 2024
1 parent 94f811f commit 094b11e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Components/Facility/ConsultationDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,10 @@ export const ConsultationDetails = (props: any) => {
patient={patientData}
abhaNumber={abhaNumberData}
consultation={consultationData}
fetchPatientData={() => patientDataQuery.refetch()}
fetchPatientData={() => {
consultationQuery.refetch();
patientDataQuery.refetch();
}}
consultationId={consultationId}
activeShiftingData={activeShiftingData}
showAbhaProfile={qParams["show-abha-profile"] === "true"}
Expand Down

0 comments on commit 094b11e

Please sign in to comment.