From cb76554e3345939bfd2beb4621148b14c3f6c787 Mon Sep 17 00:00:00 2001 From: mehmet-erim Date: Mon, 22 Feb 2021 14:11:05 +0300 Subject: [PATCH] remove a comment line --- .../account/src/lib/components/login/login.component.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/npm/ng-packs/packages/account/src/lib/components/login/login.component.ts b/npm/ng-packs/packages/account/src/lib/components/login/login.component.ts index fd45e0cdbd..3412e2046d 100644 --- a/npm/ng-packs/packages/account/src/lib/components/login/login.component.ts +++ b/npm/ng-packs/packages/account/src/lib/components/login/login.component.ts @@ -9,7 +9,7 @@ import snq from 'snq'; import { eAccountComponents } from '../../enums/components'; import { AuthenticationService } from '../../services/authentication.service'; -const { maxLength, minLength, required } = Validators; +const { maxLength, required } = Validators; @Component({ selector: 'abp-login', @@ -73,8 +73,6 @@ export class LoginComponent implements OnInit { }), finalize(() => (this.inProgress = false)), ) - .subscribe(() => { - // TODO: this.store.dispatch(new SetRemember(this.form.get('remember').value)); - }); + .subscribe(); } }