Copy and layout improvements.
This commit is contained in:
parent
39eb9e039a
commit
02222a5c16
20 changed files with 464 additions and 652 deletions
|
|
@ -292,7 +292,7 @@ export const releaseTicket = async (event, ticketType) => {
|
|||
);
|
||||
}
|
||||
|
||||
await event.save();
|
||||
await event.save({ validateBeforeSave: false });
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -309,7 +309,7 @@ export const completeTicketPurchase = async (event, ticketType) => {
|
|||
event.tickets.public.sold = (event.tickets.public.sold || 0) + 1;
|
||||
}
|
||||
|
||||
await event.save();
|
||||
await event.save({ validateBeforeSave: false });
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue