renamed in-person to link or in-person meeting

This commit is contained in:
Peer Richelsen 2021-09-15 21:54:40 +01:00
parent 113d18d84e
commit b2f10eb528
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@ const BookingPage = (props: any): JSX.Element => {
// TODO: Move to translations
const locationLabels = {
[LocationType.InPerson]: "In-person meeting",
[LocationType.InPerson]: "Link or In-person meeting",
[LocationType.Phone]: "Phone call",
[LocationType.GoogleMeet]: "Google Meet",
[LocationType.Zoom]: "Zoom Video",

View file

@ -1238,7 +1238,7 @@ export const getServerSideProps = async (context: GetServerSidePropsContext) =>
];
const locationOptions: OptionTypeBase[] = [
{ value: LocationType.InPerson, label: "In-person meeting" },
{ value: LocationType.InPerson, label: "Link or In-person meeting" },
{ value: LocationType.Phone, label: "Phone call" },
{ value: LocationType.Zoom, label: "Zoom Video", disabled: true },
];