We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c51fe6 commit e11b0daCopy full SHA for e11b0da
apps/dashboard/src/@/hooks/useEngine.ts
@@ -387,7 +387,7 @@ export function useEngineTransactions(params: {
387
placeholderData: keepPreviousData,
388
queryFn: async () => {
389
if (id) {
390
- const res = await fetch(`${instanceUrl}transaction/${id}`, {
+ const res = await fetch(`${instanceUrl}transaction/status/${id}`, {
391
headers: getEngineRequestHeaders(authToken),
392
method: "GET",
393
});
@@ -417,7 +417,6 @@ export function useEngineTransactions(params: {
417
418
419
const json = await res.json();
420
-
421
return (json.result as TransactionResponse) || {};
422
},
423
queryKey: engineKeys.transactions(instanceUrl, params),
0 commit comments