prettier fix attempt-2

pull/9078/head
Syed Ali Shahbaz 2022-06-10 16:21:55 +05:30
parent 5453af6d6e
commit 301c132815
1 changed files with 6 additions and 7 deletions

View File

@ -88,7 +88,6 @@ async function createOrlistAllBookings(
if (booking) {
res.status(201).json({ booking, message: "Booking created successfully" });
// Create Calendar Event for webhook payload
const eventType = await prisma.eventType
.findUnique({ where: { id: booking.eventTypeId as number } })
@ -115,14 +114,14 @@ async function createOrlistAllBookings(
language: {
translate: fallbackTfunction,
locale: "en",
}
},
},
attendees: [],
location: "",
destinationCalendar: null,
hideCalendar: false,
uid: booking.uid,
metadata: {}
metadata: {},
};
// Send Webhook call if hooked to BOOKING_CREATED