Skip to content

Commit

Permalink
fix(login): fix typo in formBuilder in login component
Browse files Browse the repository at this point in the history
  • Loading branch information
mojcacolnik authored and jkuri committed May 26, 2021
1 parent dcb829f commit a7addd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/abstruse/src/app/auth/login/login.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class LoginComponent implements OnInit {
submitted = false;

constructor(
private fromBuilder: FormBuilder,
private formBuilder: FormBuilder,
private auth: AuthService,
private setup: SetupService,
private router: Router
Expand Down Expand Up @@ -59,7 +59,7 @@ export class LoginComponent implements OnInit {
}

private createForm(): void {
this.loginForm = this.fromBuilder.group({
this.loginForm = this.formBuilder.group({
email: ['', Validators.required],
password: ['', Validators.required]
});
Expand Down

0 comments on commit a7addd5

Please sign in to comment.