diff --git a/frontend/src/app/services/assets.service.ts b/frontend/src/app/services/assets.service.ts index 6bed04f94..2adf57211 100644 --- a/frontend/src/app/services/assets.service.ts +++ b/frontend/src/app/services/assets.service.ts @@ -2,7 +2,6 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { shareReplay } from 'rxjs/operators'; -import { StateService } from './state.service'; @Injectable({ providedIn: 'root' @@ -14,15 +13,9 @@ export class AssetsService { constructor( private httpClient: HttpClient, - private stateService: StateService, ) { - let baseApiUrl = ''; - if (!this.stateService.isBrowser) { - baseApiUrl = this.stateService.env.BACKEND_ABSOLUTE_URL; - } - - this.getAssetsJson$ = this.httpClient.get(baseApiUrl + '/resources/assets.json').pipe(shareReplay()); - this.getAssetsMinimalJson$ = this.httpClient.get(baseApiUrl + '/resources/assets.minimal.json').pipe(shareReplay()); - this.getMiningPools$ = this.httpClient.get(baseApiUrl + '/resources/pools.json').pipe(shareReplay()); + this.getAssetsJson$ = this.httpClient.get('/resources/assets.json').pipe(shareReplay()); + this.getAssetsMinimalJson$ = this.httpClient.get('/resources/assets.minimal.json').pipe(shareReplay()); + this.getMiningPools$ = this.httpClient.get('/resources/pools.json').pipe(shareReplay()); } }