From f84373cc0368ae8b87a83965f4d4840972a8183f Mon Sep 17 00:00:00 2001 From: Anik Dhabal Babu Date: Mon, 16 Oct 2023 11:15:47 +0000 Subject: [PATCH] meeting url available when it's confirmed --- packages/emails/src/components/LocationInfo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/emails/src/components/LocationInfo.tsx b/packages/emails/src/components/LocationInfo.tsx index 0766f905ca..bfa00e3320 100644 --- a/packages/emails/src/components/LocationInfo.tsx +++ b/packages/emails/src/components/LocationInfo.tsx @@ -41,7 +41,7 @@ export function LocationInfo(props: { calEvent: CalendarEvent; t: TFunction }) { } extraInfo={ - meetingUrl && ( + meetingUrl && !props.calEvent.requiresConfirmation ? (
<> {t("meeting_url")}:{" "} @@ -50,7 +50,7 @@ export function LocationInfo(props: { calEvent: CalendarEvent; t: TFunction }) {
- ) + ) : null } /> );