From 2160b0e1c541126d7021e0b2217f36068c54bd8f Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Wed, 25 Dec 2024 18:53:41 +0100 Subject: [PATCH] :adhesive_bandage: fix(AppointmentsForPatient): Correct no no-show query. --- imports/ui/appointments/AppointmentsForPatient.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/ui/appointments/AppointmentsForPatient.tsx b/imports/ui/appointments/AppointmentsForPatient.tsx index 75edb76af..8afc65ae0 100644 --- a/imports/ui/appointments/AppointmentsForPatient.tsx +++ b/imports/ui/appointments/AppointmentsForPatient.tsx @@ -35,7 +35,7 @@ const _filter = (patientId: string, {showCancelled, showNoShow}) => { scheduledDatetime: showNoShow ? undefined : { - $ge: startOfToday(), // TODO make reactive? + $gte: startOfToday(), // TODO: make reactive? }, }), showCancelled