From 99c7d7fac4e5c45ed3c6050a7fbf4bda31ff1a1c Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 6 Feb 2022 20:03:06 +0400 Subject: [PATCH] Removing /liquid from asset grouping base path. --- frontend/src/app/services/api.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/services/api.service.ts b/frontend/src/app/services/api.service.ts index ec89314bd..c19bf5a41 100644 --- a/frontend/src/app/services/api.service.ts +++ b/frontend/src/app/services/api.service.ts @@ -118,11 +118,11 @@ export class ApiService { } listFeaturedAssets$(): Observable { - return this.httpClient.get(this.apiBaseUrl + this.apiBasePath + '/api/v1/assets/featured'); + return this.httpClient.get(this.apiBaseUrl + '/api/v1/assets/featured'); } getAssetGroup$(id: string): Observable { - return this.httpClient.get(this.apiBaseUrl + this.apiBasePath + '/api/v1/assets/group/' + id); + return this.httpClient.get(this.apiBaseUrl + '/api/v1/assets/group/' + id); } postTransaction$(hexPayload: string): Observable {