fix(TicketSale): throw error when it should
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2024-11-26 09:05:46 +01:00
parent 1e4cda6c6a
commit 8fbf7fed43
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ const changeQuantity = async (sale) => {
) )
return; return;
if (!sale.id) return addSale(sale); if (!sale.id) return addSale(sale);
updateQuantity(sale); await updateQuantity(sale);
}; };
const updateConcept = async (sale) => { const updateConcept = async (sale) => {