Save event-type's currency on db (#2404)

* Save event-type's currency on db

* Add currency field to formMethods definition
pull/2419/head^2
Miguel Nieto A 2022-04-07 10:34:49 -05:00 committed by GitHub
parent e6587efd27
commit 06df6c9e91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -472,6 +472,7 @@ const EventTypePage = (props: inferSSRProps<typeof getServerSideProps>) => {
requiresConfirmation: boolean; requiresConfirmation: boolean;
schedulingType: SchedulingType | null; schedulingType: SchedulingType | null;
price: number; price: number;
currency: string;
hidden: boolean; hidden: boolean;
hideCalendarNotes: boolean; hideCalendarNotes: boolean;
locations: { type: LocationType; address?: string; link?: string }[]; locations: { type: LocationType; address?: string; link?: string }[];
@ -915,6 +916,9 @@ const EventTypePage = (props: inferSSRProps<typeof getServerSideProps>) => {
locations, locations,
...input ...input
} = values; } = values;
if (requirePayment) input.currency = currency;
updateMutation.mutate({ updateMutation.mutate({
...input, ...input,
locations, locations,