Skip to content
Snippets Groups Projects
Commit 53e4dac2 authored by shreyvishal's avatar shreyvishal
Browse files

Added: Some Logs

parent 4e0edd2f
No related branches found
No related tags found
No related merge requests found
......@@ -46,12 +46,17 @@ export class XInputService {
const method = body?.method;
delete body.action;
delete body.method;
console.log("Data======>====>", {
url: actionUrl,
method,
data: body
});
const submitFormDataResp = await this.httpClient.client({
url: actionUrl,
method,
data: body
});
return submitFormDataResp;
return submitFormDataResp.data;
} catch (error: any) {
return { message: error.message };
}
......
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