Remove 3rd param from getBooking
parent
31ee689672
commit
cad97f1779
|
@ -283,11 +283,7 @@ export async function getServerSideProps(context: GetServerSidePropsContext) {
|
|||
: eventType.recurringEvent.count)) ||
|
||||
null;
|
||||
|
||||
const currentSlotBooking = await getBooking(
|
||||
prisma,
|
||||
bookingUidWithSeats || "",
|
||||
eventTypeObject.bookingFields
|
||||
);
|
||||
const currentSlotBooking = await getBooking(prisma, bookingUidWithSeats || "");
|
||||
|
||||
return {
|
||||
props: {
|
||||
|
|
Loading…
Reference in New Issue