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 45bdd4a commit 2d3d926Copy full SHA for 2d3d926
src/api/setup.ts
@@ -59,7 +59,7 @@ export async function requestSetup(
59
60
const md5 = ZkWasmUtil.convertToMd5(wasmUint8Array).toLowerCase()
61
62
- let taskDetails
+ let taskDetails = {}
63
let taskId = ''
64
// let setupStatus
65
@@ -70,7 +70,8 @@ export async function requestSetup(
70
)
71
.then(async (response) => {
72
taskId = response.data.result.id
73
- taskDetails = response.data.result.data[0]
+ taskDetails = response.data.result
74
+ // taskDetails = response.data.result.data[0]
75
// result.status = response.data.result.data[0].status
76
77
logger.log(`[+] SET UP TASK STARTED. TASK ID: ${taskId}`, '\n')
0 commit comments