Skip to content

Commit

Permalink
fix: path to localStorage service
Browse files Browse the repository at this point in the history
  • Loading branch information
ki8vi committed Aug 17, 2024
1 parent 8c06774 commit 2c8ee72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/api/interceptors/http.interceptor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/app/api/interceptors/http.interceptor.ts
Original file line number Diff line number Diff line change
@@ -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);
Expand Down

0 comments on commit 2c8ee72

Please sign in to comment.