From a9ca3439d29a11831c6611723f927fdbc0ea2ec9 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Tue, 11 Oct 2022 23:08:36 +0200 Subject: [PATCH] remove console.log --- lib/getServerSideProps.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/getServerSideProps.ts b/lib/getServerSideProps.ts index 63bc65c..ab38d79 100644 --- a/lib/getServerSideProps.ts +++ b/lib/getServerSideProps.ts @@ -38,8 +38,6 @@ export const getServerSideBooking = async ( const uuid = Array.isArray(uuids) ? uuids[0] : uuids const booking = await getBookingByUUID(uuid) - console.log(booking.createdAt); - if (!booking) { res.statusCode = 404 res.end()