Chore: Fix import of Observable to be from rxjs and not rxjs/internal. It was maybe causing optimization bailouts

This commit is contained in:
2021-09-20 09:27:33 +05:30
parent 5ff954deb6
commit debe0df7b7
77 changed files with 76 additions and 77 deletions

View File

@ -1,6 +1,6 @@
import { HttpClient, HttpHeaders } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/internal/Observable';
import { Observable } from 'rxjs';
import { catchError } from 'rxjs/operators';
import { ErrorLoggerService } from '../core/error-logger.service';