perf: replace `notIn` with `equals` on booking (#8303)
Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>pull/8311/head
parent
da3ee3f1fe
commit
b5c993e153
|
@ -115,7 +115,7 @@ export const bookingsRouter = router({
|
|||
OR: [
|
||||
{
|
||||
recurringEventId: { not: null },
|
||||
status: { notIn: [BookingStatus.PENDING, BookingStatus.CANCELLED, BookingStatus.REJECTED] },
|
||||
status: { equals: BookingStatus.ACCEPTED },
|
||||
},
|
||||
{
|
||||
recurringEventId: { equals: null },
|
||||
|
|
Loading…
Reference in New Issue