diff --git a/apps/web/pages/event-types/[type].tsx b/apps/web/pages/event-types/[type].tsx index fcf3773f..825bc720 100644 --- a/apps/web/pages/event-types/[type].tsx +++ b/apps/web/pages/event-types/[type].tsx @@ -424,6 +424,7 @@ const EventTypePage = (props: inferSSRProps) => { schedulingType: SchedulingType | null; price: number; hidden: boolean; + hideCalendarNotes: boolean; locations: { type: LocationType; address?: string; link?: string }[]; customInputs: EventTypeCustomInput[]; users: string[]; @@ -1228,6 +1229,24 @@ const EventTypePage = (props: inferSSRProps) => { + ( + { + formMethods.setValue("hideCalendarNotes", e?.target.checked); + }} + /> + )} + /> + periodEndDate: true, periodCountCalendarDays: true, requiresConfirmation: true, + hideCalendarNotes: true, disableGuests: true, minimumBookingNotice: true, beforeEventBuffer: true,