From dca3278c40ab25d2a20b1b3d6e69215e12d839c0 Mon Sep 17 00:00:00 2001 From: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Date: Thu, 8 Dec 2022 01:42:26 +0530 Subject: [PATCH] fix: zoom video (#5910) Signed-off-by: Udit Takkar Signed-off-by: Udit Takkar Co-authored-by: Peer Richelsen --- packages/app-store/locations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app-store/locations.ts b/packages/app-store/locations.ts index 9c0b21cccf..040684ffc5 100644 --- a/packages/app-store/locations.ts +++ b/packages/app-store/locations.ts @@ -230,7 +230,7 @@ export const getMessageForOrganizer = (location: string, t: TFunction) => { if (defaultLocation) { return t(defaultLocation.messageForOrganizer); } - if (videoLocation && videoLocation.linkType !== "static") { + if (videoLocation && videoLocation.linkType !== "static" && videoLocation.type !== "integrations:zoom") { return t(`Cal will provide a ${videoLocation.label} URL.`); } return "";