diff --git a/apps/testing/29-real-life-application/src/app/detail/detail.store.ts b/apps/testing/29-real-life-application/src/app/detail/detail.store.ts index 9425b25b2..55685b7ce 100644 --- a/apps/testing/29-real-life-application/src/app/detail/detail.store.ts +++ b/apps/testing/29-real-life-application/src/app/detail/detail.store.ts @@ -1,11 +1,7 @@ import { Injectable } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; -import { - ComponentStore, - OnStateInit, - tapResponse, -} from '@ngrx/component-store'; -import { concatLatestFrom } from '@ngrx/effects'; +import { ComponentStore, OnStateInit } from '@ngrx/component-store'; +import { concatLatestFrom, tapResponse } from '@ngrx/operators'; import { pipe } from 'rxjs'; import { map, mergeMap, tap } from 'rxjs/operators'; import { PARAM_TICKET_ID } from '../app.route'; diff --git a/apps/testing/29-real-life-application/src/app/list/ticket.store.ts b/apps/testing/29-real-life-application/src/app/list/ticket.store.ts index f8bf979a9..838b6038d 100644 --- a/apps/testing/29-real-life-application/src/app/list/ticket.store.ts +++ b/apps/testing/29-real-life-application/src/app/list/ticket.store.ts @@ -3,8 +3,8 @@ import { ComponentStore, OnStateInit, OnStoreInit, - tapResponse, } from '@ngrx/component-store'; +import { tapResponse } from '@ngrx/operators'; import { pipe } from 'rxjs'; import { mergeMap, tap } from 'rxjs/operators'; import { BackendService, Ticket, User } from '../backend.service';