import { getCancelLink } from "@calcom/lib/CalEventParser"; import type { CalendarEvent, Person } from "@calcom/types/Calendar"; export function ManageLink(props: { calEvent: CalendarEvent; attendee: Person }) { // Only the original attendee can make changes to the event // Guests cannot const t = props.attendee.language.translate; if ( props.attendee.email === props.calEvent.attendees[0].email || props.calEvent.organizer.email === props.attendee.email ) { return (

<>{t("need_to_reschedule_or_cancel")}

<>{t("manage_this_event")}

); } // Dont have the rights to the manage link return null; }