diff --git a/apps/web/pages/event-types/[type].tsx b/apps/web/pages/event-types/[type].tsx index 7cb5b3c375..e7cab3a7eb 100644 --- a/apps/web/pages/event-types/[type].tsx +++ b/apps/web/pages/event-types/[type].tsx @@ -472,6 +472,7 @@ const EventTypePage = (props: inferSSRProps) => { requiresConfirmation: boolean; schedulingType: SchedulingType | null; price: number; + currency: string; hidden: boolean; hideCalendarNotes: boolean; locations: { type: LocationType; address?: string; link?: string }[]; @@ -915,6 +916,9 @@ const EventTypePage = (props: inferSSRProps) => { locations, ...input } = values; + + if (requirePayment) input.currency = currency; + updateMutation.mutate({ ...input, locations,