fix(PendingOrders): migrate removeOrder, too
gitea/hedera-web/pipeline/pr-beta This commit looks good Details

This commit is contained in:
taro 2025-03-25 04:08:43 -03:00
parent 64582e99c7
commit 859ffbd1fd
1 changed files with 1 additions and 8 deletions

View File

@ -75,14 +75,7 @@ const getOrders = async (clientFk) => {
const removeOrder = async (id, index) => {
try {
await jApi.execQuery(
`START TRANSACTION;
DELETE FROM hedera.myOrder WHERE ((id = #id));
COMMIT`,
{
id
}
);
await api.delete(`Orders/${id}`);
orders.value.splice(index, 1);
notify(t('dataSaved'), 'positive');
} catch (error) {