Skip to content

Commit

Permalink
fix: use a get to check status
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Sep 10, 2021
1 parent 8769ca0 commit 091f6de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class Api {
}

async getNodeStatus() {
return axios.post(urljoin(this.baseUrl, `/extended/v1/status`));
return axios.get(urljoin(this.baseUrl, `/extended/v1/status`));
}

async getCoreDetails() {
Expand Down

0 comments on commit 091f6de

Please sign in to comment.