Merge branch 'master' of https://gitea.verdnatura.es/verdnatura/salix-front
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Javier Segarra 2025-03-25 11:41:07 +01:00
commit a519014685
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ const getPriceDifference = async () => {
shipped: ticket.value.shipped,
};
const { data } = await axios.post(
`tickets/${formData.value.id}/priceDifference`,
`tickets/${ticket.value.id}/priceDifference`,
params,
);
ticket.value.sale = data;
@ -71,7 +71,7 @@ const submit = async () => {
};
const { data } = await axios.post(
`tickets/${formData.value.id}/componentUpdate`,
`tickets/${ticket.value.id}/componentUpdate`,
params,
);