diff --git a/packages/atoms/EventTypeList/EventType.tsx b/packages/atoms/EventTypeList/EventType.tsx index 6a5b011201..c70618841d 100644 --- a/packages/atoms/EventTypeList/EventType.tsx +++ b/packages/atoms/EventTypeList/EventType.tsx @@ -1,7 +1,9 @@ import { memo } from "react"; +import { useOrgBranding } from "@calcom/ee/organizations/context/provider"; +import { WEBAPP_URL } from "@calcom/lib/constants"; import { SchedulingType } from "@calcom/prisma/enums"; -import { ArrowButton } from "@calcom/ui"; +import { ArrowButton, AvatarGroup } from "@calcom/ui"; const Item = ({ type, group, readOnly }: { type: any; group: any; readonly: boolean }) => { const content = () => ( @@ -68,6 +70,9 @@ export function EventType({ lastItem: { id: string }; moveEventType: (index: number, increment: 1 | -1) => void; }) { + const isManagedEventType = type.schedulingType === SchedulingType.MANAGED; + const orgBranding = useOrgBranding(); + return (