diff --git a/projects/srm/src/app/api.service.ts b/projects/srm/src/app/api.service.ts index f68e9de3..14c10646 100644 --- a/projects/srm/src/app/api.service.ts +++ b/projects/srm/src/app/api.service.ts @@ -35,8 +35,6 @@ export class ApiService { const cached = memoryCache.get(key); // console.log('GOT MEM CACHED', !!cached, stateKey); if (cached) { - if (this.platform.server()) { - } return from([cached]); } if (this.waiting[key]) { @@ -220,9 +218,9 @@ export class ApiService { } getCards(searchParams: SearchParams, offset=0, zoomedIn=true): Observable { - if (this.platform.server()) { - return from([]); - } + // if (this.platform.server()) { + // return from([]); + // } const params: any = { size: 10, offset: offset,