File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/app/shared/interceptors Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ export class ResponseInterceptor implements HttpInterceptor {
2020 ) : Observable < HttpEvent < any > > {
2121
2222 return next . handle ( request ) . pipe ( tap ( event => {
23- if ( event . type === HttpEventType . Response ) {
24- console . log ( 'response received' ) ;
25- }
23+ // if (event.type === HttpEventType.Response) {
24+ // console.debug ('response received');
25+ // }
2626 } , ( error : HttpErrorResponse ) => {
2727 console . error ( error ) ;
2828
@@ -39,7 +39,7 @@ export class ResponseInterceptor implements HttpInterceptor {
3939 duration : 2000 ,
4040 } ) ;
4141 }
42- if ( this . loadingSvc . isLoading === true ) {
42+ if ( this . loadingSvc . isLoading === true ) {
4343 this . loadingSvc . isLoading = false ;
4444 }
4545 } ) ) ;
You can’t perform that action at this time.
0 commit comments