caddy lables

This commit is contained in:
2026-05-26 17:15:44 +03:00
parent fae7263127
commit ebb011515a
@@ -15,11 +15,9 @@ export class CustomHttpInterceptor implements HttpInterceptor {
return next.handle(req)
.pipe(tap((event: HttpEvent<any>) => {
if (event instanceof HttpResponse) {
console.log('Interceptor увидел ответ:', event.url, 'status:', event.status, 'ok:', event.ok);
this.spinnerService.hide();
}
}, (error) => {
this.spinnerService.hide();
}))
;
}
}