diff --git a/src/app/api/interceptors/http.interceptor.spec.ts b/src/app/api/interceptors/http.interceptor.spec.ts index 5944af6..67ca624 100644 --- a/src/app/api/interceptors/http.interceptor.spec.ts +++ b/src/app/api/interceptors/http.interceptor.spec.ts @@ -2,7 +2,7 @@ import { HttpClient, HttpInterceptorFn, provideHttpClient, withInterceptors } fr import { HttpTestingController, provideHttpClientTesting } from '@angular/common/http/testing'; import { TestBed } from '@angular/core/testing'; -import LocalStorageService from '../../core/services/local-storage.service'; +import { LocalStorageService } from '../../core/services/local-storage/local-storage.service'; import { httpInterceptor } from './http.interceptor'; describe('httpInterceptorInterceptor', () => { diff --git a/src/app/api/interceptors/http.interceptor.ts b/src/app/api/interceptors/http.interceptor.ts index 11c02f8..fd5d626 100644 --- a/src/app/api/interceptors/http.interceptor.ts +++ b/src/app/api/interceptors/http.interceptor.ts @@ -1,7 +1,7 @@ import { HttpHeaders, HttpInterceptorFn } from '@angular/common/http'; import { inject } from '@angular/core'; -import LocalStorageService from '../../core/services/local-storage.service'; +import { LocalStorageService } from '../../core/services/local-storage/local-storage.service'; export const httpInterceptor: HttpInterceptorFn = (req, next) => { const localStorageService = inject(LocalStorageService);