Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Trigger new codacy run
Browse files Browse the repository at this point in the history
  • Loading branch information
djperrefort committed Mar 27, 2024
1 parent d2527cd commit 66b748b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/authentication/components/login/login.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export class LoginComponent implements OnInit {

onSubmit(): void {
this.apiService.login(this.username, this.password).subscribe({
next: () => this.handleSuccessfulLogin(),
error: () => this.handleUnsuccessfulLogin()
next: () => {this.handleSuccessfulLogin()},
error: () => {this.handleUnsuccessfulLogin()}
})
}

Expand Down

0 comments on commit 66b748b

Please sign in to comment.