diff --git a/apps/web/pages/booking/[uid].tsx b/apps/web/pages/booking/[uid].tsx index fa337a6114..a002ce410d 100644 --- a/apps/web/pages/booking/[uid].tsx +++ b/apps/web/pages/booking/[uid].tsx @@ -46,7 +46,7 @@ import prisma from "@calcom/prisma"; import type { Prisma } from "@calcom/prisma/client"; import { bookingMetadataSchema } from "@calcom/prisma/zod-utils"; import { customInputSchema, EventTypeMetaDataSchema } from "@calcom/prisma/zod-utils"; -import { Button, EmailInput, HeadSeo, Label } from "@calcom/ui"; +import { Badge, Button, EmailInput, HeadSeo } from "@calcom/ui"; import { FiX, FiExternalLink, FiChevronLeft, FiCheck, FiCalendar } from "@calcom/ui/components/icon"; import { timeZone } from "@lib/clock"; @@ -497,7 +497,12 @@ export default function Success(props: SuccessProps) { <> {bookingInfo?.user && (
-

{bookingInfo.user.name}

+

+ {bookingInfo.user.name} + + {t("Host")} + +

{bookingInfo.user.email}

)} @@ -554,9 +559,10 @@ export default function Success(props: SuccessProps) { return ( <> - - {/* Might be a good idea to use the readonly variant of respective components here */} -
{response.toString()}
+
{label}
+
+

{response.toString()}

+
); })}