meeting url available when it's confirmed

pull/11914/head
Anik Dhabal Babu 2023-10-16 11:15:47 +00:00
parent 8ebcfbb8d1
commit f84373cc03
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ export function LocationInfo(props: { calEvent: CalendarEvent; t: TFunction }) {
</a>
}
extraInfo={
meetingUrl && (
meetingUrl && !props.calEvent.requiresConfirmation ? (
<div style={{ color: "#494949", fontWeight: 400, lineHeight: "24px" }}>
<>
{t("meeting_url")}:{" "}
@ -50,7 +50,7 @@ export function LocationInfo(props: { calEvent: CalendarEvent; t: TFunction }) {
</a>
</>
</div>
)
) : null
}
/>
);