diff --git a/components/booking/pages/BookingPage.tsx b/components/booking/pages/BookingPage.tsx index a890387d..a5031f7d 100644 --- a/components/booking/pages/BookingPage.tsx +++ b/components/booking/pages/BookingPage.tsx @@ -400,7 +400,7 @@ const BookingPage = (props: BookingPageProps) => { value={location.type} defaultChecked={selectedLocation === location.type} /> - + {locationLabels[location.type]} diff --git a/components/team/MemberInvitationModal.tsx b/components/team/MemberInvitationModal.tsx index c633e5ba..c4b78fed 100644 --- a/components/team/MemberInvitationModal.tsx +++ b/components/team/MemberInvitationModal.tsx @@ -106,7 +106,7 @@ export default function MemberInvitationModal(props: { team: TeamWithMembers | n className="rounded-sm border-gray-300 text-black shadow-sm focus:border-brand focus:ring-black sm:text-sm" /> -
+
diff --git a/pages/event-types/[type].tsx b/pages/event-types/[type].tsx index d77d3ccf..cf75dd7d 100644 --- a/pages/event-types/[type].tsx +++ b/pages/event-types/[type].tsx @@ -399,13 +399,17 @@ const EventTypePage = (props: inferSSRProps) => { {location.type === LocationType.InPerson && (
- {location.address} +
)} {location.type === LocationType.Phone && (
- {t("phone_call")} + {t("phone_call")}
)} {location.type === LocationType.GoogleMeet && ( @@ -436,7 +440,7 @@ const EventTypePage = (props: inferSSRProps) => { - Google Meet + Google Meet
)} {location.type === LocationType.Huddle01 && ( @@ -509,7 +513,7 @@ const EventTypePage = (props: inferSSRProps) => { fillRule="evenodd"> - Daily.co Video + Daily.co Video
)} {location.type === LocationType.Zoom && ( @@ -536,7 +540,7 @@ const EventTypePage = (props: inferSSRProps) => { fill="white" /> - Zoom Video + Zoom Video )} {location.type === LocationType.Tandem && ( @@ -925,7 +929,7 @@ const EventTypePage = (props: inferSSRProps) => {
{t("label")}: {customInput.label} @@ -933,19 +937,19 @@ const EventTypePage = (props: inferSSRProps) => { {customInput.placeholder && (
{t("placeholder")}: {customInput.placeholder}
)}
- + {t("type")}: {customInput.type}
- + {customInput.required ? t("required") : t("optional")}