refactor: URLSearchParams -> JSON
gitea/hedera-web/pipeline/pr-beta This commit looks good Details

This commit is contained in:
taro 2025-03-21 00:03:36 -03:00
parent 1c3684c8c7
commit 2733b13953
1 changed files with 3 additions and 3 deletions

View File

@ -12,10 +12,10 @@ export const tpvStore = defineStore('tpv', {
if (!(order && status)) return null;
await api.post('applications/myTpvTransaction_end/execute-proc', new URLSearchParams({
await api.post('applications/myTpvTransaction_end/execute-proc', {
schema: 'hedera',
params: `[${order}, ${status}]`,
}).toString());
params: [order, status],
});
if (status === 'ko') {
const retry = confirm('retryPayQuestion');