From 7c86a474ad8dd8005518c94b60222d1c589734eb Mon Sep 17 00:00:00 2001 From: Renan Augusto Alves da Costa <30834451+renan-alves@users.noreply.github.com> Date: Thu, 16 Feb 2023 16:24:57 -0300 Subject: [PATCH] fix: changing rxjs operators import --- projects/lib/src/directives/google-signin-button.directive.ts | 2 +- projects/lib/src/providers/google-login-provider.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/projects/lib/src/directives/google-signin-button.directive.ts b/projects/lib/src/directives/google-signin-button.directive.ts index b667541b..8ac53ef5 100644 --- a/projects/lib/src/directives/google-signin-button.directive.ts +++ b/projects/lib/src/directives/google-signin-button.directive.ts @@ -1,5 +1,5 @@ import { Directive, ElementRef, Input } from '@angular/core'; -import { take } from 'rxjs'; +import { take } from 'rxjs/operators'; import { SocialAuthService } from '../socialauth.service'; @Directive({ diff --git a/projects/lib/src/providers/google-login-provider.ts b/projects/lib/src/providers/google-login-provider.ts index 1227cc91..c6ddff09 100644 --- a/projects/lib/src/providers/google-login-provider.ts +++ b/projects/lib/src/providers/google-login-provider.ts @@ -1,7 +1,8 @@ import { BaseLoginProvider } from '../entities/base-login-provider'; import { SocialUser } from '../entities/social-user'; import { EventEmitter } from '@angular/core'; -import { BehaviorSubject, filter, skip, take } from 'rxjs'; +import { BehaviorSubject } from 'rxjs'; +import { filter, skip, take } from 'rxjs/operators'; export interface GoogleInitOptions { /**