From add57216a774e1cbd4da914ee7e4ddd1a68040c8 Mon Sep 17 00:00:00 2001 From: Harshil Sharma Date: Thu, 9 Sep 2021 15:35:30 +0530 Subject: [PATCH] ADded submath support in one missed place (#1156) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jesús Espino --- webapp/src/octoClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/octoClient.ts b/webapp/src/octoClient.ts index d629baf43..e0033b13c 100644 --- a/webapp/src/octoClient.ts +++ b/webapp/src/octoClient.ts @@ -86,7 +86,7 @@ class OctoClient { async getClientConfig(): Promise { const path = '/api/v1/clientConfig' - const response = await fetch(this.serverUrl + path, { + const response = await fetch(this.getBaseURL() + path, { method: 'GET', headers: this.headers(), })