From 66b748b4044d548385dfb33368d9bb5bacb126ec Mon Sep 17 00:00:00 2001 From: Daniel Perrefort Date: Wed, 27 Mar 2024 10:35:27 -0400 Subject: [PATCH] Trigger new codacy run --- src/app/authentication/components/login/login.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/authentication/components/login/login.component.ts b/src/app/authentication/components/login/login.component.ts index 12f74ba..30a699f 100644 --- a/src/app/authentication/components/login/login.component.ts +++ b/src/app/authentication/components/login/login.component.ts @@ -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()} }) }