Skip to content
Snippets Groups Projects
Commit 0742610d authored by Ajay Nishad's avatar Ajay Nishad
Browse files

fix: ps client response decode issue

parent 4f00278f
No related branches found
No related tags found
No related merge requests found
......@@ -27,14 +27,8 @@ export class PSClientService {
}
async postMany(payloads: any[]): Promise<any> {
const psResponses: any[] = await Promise.all(payloads.map((payload: any) =>
return await Promise.all(payloads.map((payload: any) =>
this.postPromise(payload)
));
const responses = [...psResponses];
return responses;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment