Skip to content

Commit

Permalink
[#1355] Remove redundant navigate call
Browse files Browse the repository at this point in the history
  • Loading branch information
fivitti committed May 10, 2024
1 parent 3ff0f59 commit c55f64b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion webui/src/app/login-screen/login-screen.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ export class LoginScreenComponent implements OnInit {
Object.keys(this.loginForm.controls).forEach((k) => this.loginForm.get(k).markAsDirty())
if (this.loginForm.valid) {
this.auth.login(this.authenticationMethod.id, this.f.identifier.value, this.f.secret.value, this.returnUrl)
this.router.navigate([this.returnUrl])
}
}

Expand Down

0 comments on commit c55f64b

Please sign in to comment.