From 38a5a22b9e5d79cb6f7a1ce659fe95c76bd619bf Mon Sep 17 00:00:00 2001 From: Harsh Singh <51085015+harshsinghatz@users.noreply.github.com> Date: Mon, 5 Dec 2022 23:11:40 +0530 Subject: [PATCH] Harsh/fix bookings name (#5848) Co-authored-by: Guest Co-authored-by: root Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com> Co-authored-by: Peer Richelsen --- apps/web/pages/booking/[uid].tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/web/pages/booking/[uid].tsx b/apps/web/pages/booking/[uid].tsx index f893f67569..a4514e10b0 100644 --- a/apps/web/pages/booking/[uid].tsx +++ b/apps/web/pages/booking/[uid].tsx @@ -178,12 +178,16 @@ export default function Success(props: SuccessProps) { console.error(`No location found `); } - const name = props.bookingInfo?.user?.name; const email = props.bookingInfo?.user?.email; const status = props.bookingInfo?.status; const reschedule = props.bookingInfo.status === BookingStatus.ACCEPTED; const cancellationReason = props.bookingInfo.cancellationReason; + const attendeeName = + typeof props?.bookingInfo?.attendees?.[0]?.name === "string" + ? props?.bookingInfo?.attendees?.[0]?.name + : "Nameless"; + const [is24h, setIs24h] = useState(isBrowserLocale24h()); const { data: session } = useSession(); @@ -205,8 +209,6 @@ export default function Success(props: SuccessProps) { }); } - const attendeeName = typeof name === "string" ? name : "Nameless"; - const eventNameObject = { attendeeName, eventType: props.eventType.title,