Co-authored-by: Syed Ali Shahbaz <52925846+alishaz-polymath@users.noreply.github.com> Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
This commit is contained in:
		
							parent
							
								
									c59dce1284
								
							
						
					
					
						commit
						cad77ad237
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -1,5 +1,6 @@ | ||||||
| import { BookingStatus } from "@prisma/client"; | import { BookingStatus } from "@prisma/client"; | ||||||
| import async from "async"; | import async from "async"; | ||||||
|  | import dayjs from "dayjs"; | ||||||
| import { NextApiRequest, NextApiResponse } from "next"; | import { NextApiRequest, NextApiResponse } from "next"; | ||||||
| 
 | 
 | ||||||
| import { refund } from "@ee/lib/stripe/server"; | import { refund } from "@ee/lib/stripe/server"; | ||||||
|  | @ -98,8 +99,8 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse) | ||||||
|     title: bookingToDelete?.title, |     title: bookingToDelete?.title, | ||||||
|     type: bookingToDelete?.eventType?.title as string, |     type: bookingToDelete?.eventType?.title as string, | ||||||
|     description: bookingToDelete?.description || "", |     description: bookingToDelete?.description || "", | ||||||
|     startTime: bookingToDelete?.startTime.toISOString(), |     startTime: bookingToDelete?.startTime ? dayjs(bookingToDelete.startTime).format() : "", | ||||||
|     endTime: bookingToDelete?.endTime.toISOString(), |     endTime: bookingToDelete?.endTime ? dayjs(bookingToDelete.endTime).format() : "", | ||||||
|     organizer: { |     organizer: { | ||||||
|       email: organizer.email, |       email: organizer.email, | ||||||
|       name: organizer.name ?? "Nameless", |       name: organizer.name ?? "Nameless", | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 buschco
						buschco