diff --git a/db/booking.ts b/db/booking.ts index 688e18f..7748156 100644 --- a/db/booking.ts +++ b/db/booking.ts @@ -69,7 +69,6 @@ BookingSchema.virtual('days').get(function () { }) BookingSchema.static('findBookedDays', async function (): Promise { - console.log('in findBookedDays this is', this) const bookings = await this.find( { status: { $in: [BOOKING_STATUS.REQUESTED, BOOKING_STATUS.CONFIRMED] },