From 19dd00df42271ac122f2fc28b305cfecc417c27e Mon Sep 17 00:00:00 2001 From: joaquin albanesi Date: Tue, 23 Apr 2024 14:46:07 -0300 Subject: [PATCH] update: Changed the loaderService path --- src/app/core/interceptors/weather.interceptor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/interceptors/weather.interceptor.ts b/src/app/core/interceptors/weather.interceptor.ts index 96616fb..47fa9cc 100644 --- a/src/app/core/interceptors/weather.interceptor.ts +++ b/src/app/core/interceptors/weather.interceptor.ts @@ -1,7 +1,7 @@ import type { HttpErrorResponse, HttpInterceptorFn } from "@angular/common/http"; import { inject } from "@angular/core"; import { catchError, finalize, throwError } from "rxjs"; -import { LoaderService } from "../services/spinner-loader.service"; +import { LoaderService } from "../services/loader.service"; export const weatherInterceptor: HttpInterceptorFn = (req, next) => { const loaderService: LoaderService = inject(LoaderService);