You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
form = new FormGroup({
username: new FormControl(null, [Validators.required, Validators.minLength(4)]),
password: new FormControl(null, Validators.required),
});
Hello,
As far as I remember I omitted the null declaration. It is already required
so it can't be null and void from the restriction that is required.
Try this. I am not able to see my code at the moment.
Cheers!!
The text was updated successfully, but these errors were encountered: