Skip to content

Commit

Permalink
format testing
Browse files Browse the repository at this point in the history
  • Loading branch information
auumgn committed Oct 26, 2023
1 parent 1771376 commit 449c441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/account/login/login.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class LoginComponent implements AfterViewInit, OnDestroy {
this.loginService
.login({
username: this.loginForm.get('username')!.value!,

Check warning on line 77 in ui/src/app/account/login/login.component.ts

View workflow job for this annotation

GitHub Actions / format

Forbidden non-null assertion

Check warning on line 77 in ui/src/app/account/login/login.component.ts

View workflow job for this annotation

GitHub Actions / format

Forbidden non-null assertion
password: this.loginForm.get('password')!.value!,
password: this.loginForm.get('password')!.value! ,

Check warning on line 78 in ui/src/app/account/login/login.component.ts

View workflow job for this annotation

GitHub Actions / format

Forbidden non-null assertion

Check warning on line 78 in ui/src/app/account/login/login.component.ts

View workflow job for this annotation

GitHub Actions / format

Forbidden non-null assertion
mfaCode: this.loginForm.get('mfaCode')?.value,
})
.subscribe({
Expand Down

0 comments on commit 449c441

Please sign in to comment.