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 3a7b02e commit c2b14dcCopy full SHA for c2b14dc
src/lib/services/agent-service.js
@@ -77,7 +77,7 @@ export async function deleteAgent(agentId) {
77
*/
78
export async function refreshAgents() {
79
const url = endpoints.agentRefreshUrl;
80
- const response = await axios.post(url);
+ const response = await axios.post(url, {});
81
return response.data;
82
}
83
@@ -120,4 +120,4 @@ export async function getAgentLabels() {
120
const url = endpoints.agentLabelsUrl;
121
const response = await axios.get(url);
122
123
-}
+}
0 commit comments