From 091f6de99925faf0a2fde0245092b201648fede3 Mon Sep 17 00:00:00 2001 From: kyranjamie Date: Thu, 9 Sep 2021 18:52:32 +0200 Subject: [PATCH] fix: use a get to check status --- app/api/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/api.ts b/app/api/api.ts index 699ac9b7e..363e2aedf 100644 --- a/app/api/api.ts +++ b/app/api/api.ts @@ -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() {