diff options
Diffstat (limited to 'frontend/src/app/_modals/login-modal')
-rw-r--r-- | frontend/src/app/_modals/login-modal/login-modal.component.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/src/app/_modals/login-modal/login-modal.component.ts b/frontend/src/app/_modals/login-modal/login-modal.component.ts index e1535a25..b28d9799 100644 --- a/frontend/src/app/_modals/login-modal/login-modal.component.ts +++ b/frontend/src/app/_modals/login-modal/login-modal.component.ts @@ -33,7 +33,6 @@ export class LoginModalComponent implements OnInit { doLogin() { if (this.username.length > 0 && this.password.length > 0) { this.authService.login(this.username, this.password).subscribe((response) => { - console.log(response); if (response == "Username doesn't exist" || response == "Wrong password") { this.wrongCreds = true; |