Skip to content

Commit

Permalink
🩹 fix(AppointmentsForPatient): Correct no no-show query.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Dec 26, 2024
1 parent 40de200 commit 2160b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imports/ui/appointments/AppointmentsForPatient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const _filter = (patientId: string, {showCancelled, showNoShow}) => {
scheduledDatetime: showNoShow
? undefined
: {
$ge: startOfToday(), // TODO make reactive?
$gte: startOfToday(), // TODO: make reactive?
},
}),
showCancelled
Expand Down

0 comments on commit 2160b0e

Please sign in to comment.