I wander how I can resolve this.
this.signupForm.valueChanges.subscribe(
(value) => console.log(value);
)
I obtain a message:
Subscription is deprecated. Use an observer instead of complete callback
The correct syntax is:
this.signupForm.valueChanges.subscribe({
next: (value) => console.log(value)
})
In this way, it works fine.