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,