cleanup: remove debug console.log from auth benchmarking

This commit is contained in:
Jose Selesan
2026-04-13 19:33:13 -03:00
parent b7c303377a
commit 62d28734fc

View File

@@ -245,8 +245,10 @@ export async function listAdminBookings(
orderBy: [{ bookingDate: 'asc' }, { startTime: 'asc' }, { createdAt: 'asc' }], orderBy: [{ bookingDate: 'asc' }, { startTime: 'asc' }, { createdAt: 'asc' }],
}); });
const response = bookings.map((booking) => mapBookingResponse(booking));
return { return {
bookings: bookings.map((booking) => mapBookingResponse(booking)), bookings: response,
}; };
} }