From 3a58bc2efecdff7d1fc367f776aef866ed6d39f5 Mon Sep 17 00:00:00 2001 From: Mahmut Gundogdu Date: Tue, 15 Feb 2022 14:11:15 +0300 Subject: [PATCH] Path of dependencies of component service changes rollback --- .../theme-shared/src/lib/services/confirmation.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/npm/ng-packs/packages/theme-shared/src/lib/services/confirmation.service.ts b/npm/ng-packs/packages/theme-shared/src/lib/services/confirmation.service.ts index 8ad925ee5b..02840743da 100644 --- a/npm/ng-packs/packages/theme-shared/src/lib/services/confirmation.service.ts +++ b/npm/ng-packs/packages/theme-shared/src/lib/services/confirmation.service.ts @@ -2,8 +2,8 @@ import { ContentProjectionService, LocalizationParam, PROJECTION_STRATEGY } from import { ComponentRef, Injectable } from '@angular/core'; import { fromEvent, Observable, ReplaySubject, Subject } from 'rxjs'; import { debounceTime, filter, takeUntil } from 'rxjs/operators'; -import { ConfirmationComponent } from '../components'; -import { Confirmation } from '../models'; +import { ConfirmationComponent } from '../components/confirmation/confirmation.component'; +import { Confirmation } from '../models/confirmation'; @Injectable({ providedIn: 'root' }) export class ConfirmationService {