From 6302a65afe66d1a8ddaebed7b0a79a976326d22a Mon Sep 17 00:00:00 2001 From: Giuseppe Digilio Date: Fri, 29 Mar 2019 15:31:00 +0100 Subject: [PATCH] Fixed build error --- src/app/core/json-patch/selectors.ts | 3 ++- src/app/shared/services/route.service.ts | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/core/json-patch/selectors.ts b/src/app/core/json-patch/selectors.ts index da8fee8602..1ccde294de 100644 --- a/src/app/core/json-patch/selectors.ts +++ b/src/app/core/json-patch/selectors.ts @@ -1,5 +1,6 @@ import { MemoizedSelector } from '@ngrx/store'; -import { coreSelector, CoreState } from '../core.reducers'; +import { CoreState } from '../core.reducers'; +import { coreSelector } from '../core.selectors'; import { JsonPatchOperationsEntry, JsonPatchOperationsResourceEntry } from './json-patch-operations.reducer'; import { keySelector, subStateSelector } from '../../submission/selectors'; diff --git a/src/app/shared/services/route.service.ts b/src/app/shared/services/route.service.ts index 6dbc9222a1..48fc3ba0b0 100644 --- a/src/app/shared/services/route.service.ts +++ b/src/app/shared/services/route.service.ts @@ -4,7 +4,6 @@ import { ActivatedRoute, NavigationEnd, Params, Router, } from '@angular/router' import { distinctUntilChanged, filter, map } from 'rxjs/operators'; import { Observable } from 'rxjs'; import { select, Store } from '@ngrx/store'; -import { detect } from 'rxjs-spy'; import { AppState } from '../../app.reducer'; import { AddUrlToHistoryAction } from '../history/history.actions';