Error stating Module '"@angular/forms"' has no exported member 'UntypedFormGroup'. after updating to Angular 14.0.0

Viewed 1345

I had an enterprise Angular application that was previously running on Angular 13.3.8 and updated to 14.0.0, but am now having a problem where the app is auto-updated (component code) to import UntypedFormBuilder and UntypedFormGroup from @angular/forms. In same template, it replaced the following form group type from the following...

form: FormGroup;

to

form: UntypedFormGroup;

Getting following error:

Cannot find name 'UntypedFormBuilder'

Don't understand what to do, or how this should work. Any help appreciated.

0 Answers
Related