fix: use store instead formData
gitea/salix-front/pipeline/pr-master This commit looks good Details

This commit is contained in:
Javier Segarra 2025-03-25 10:08:58 +01:00
parent ca4e02a2bf
commit 0014356b33
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,
);