From 425ab601ed1a6b8aff2e3cf7315af7c47bf801c5 Mon Sep 17 00:00:00 2001 From: mehmet-erim Date: Mon, 8 Mar 2021 15:37:01 +0300 Subject: [PATCH] remove take(1) from authentication.service --- .../packages/account/src/lib/services/authentication.service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/npm/ng-packs/packages/account/src/lib/services/authentication.service.ts b/npm/ng-packs/packages/account/src/lib/services/authentication.service.ts index ce35da4871..8348d07d51 100644 --- a/npm/ng-packs/packages/account/src/lib/services/authentication.service.ts +++ b/npm/ng-packs/packages/account/src/lib/services/authentication.service.ts @@ -51,7 +51,6 @@ export class AuthenticationService { const strategy = this.authService.activeAuthFlowStrategy; if (strategy instanceof AuthPasswordFlowStrategy) strategy.setRememberMe(remember); }), - take(1), ); } }