fixed lint error

This commit is contained in:
Michael Spalti
2023-01-11 12:03:19 -08:00
parent 357525e68a
commit 65af3973ba

View File

@@ -67,7 +67,7 @@ export class LogInComponent implements OnInit {
select(getAuthenticationMethods), select(getAuthenticationMethods),
).subscribe(methods => { ).subscribe(methods => {
// ignore the ip authentication method when it's returned by the backend // ignore the ip authentication method when it's returned by the backend
this.authMethods = methods.filter(a => a.authMethodType !== AuthMethodType.Ip) this.authMethods = methods.filter(a => a.authMethodType !== AuthMethodType.Ip);
}); });
// set loading // set loading