I am facing an issue where I do not want the validators to run unnecessarily. Every element of FormArray is being validated asynchronously, so I prefer the validators to be triggered only when the control's value actually changes. It seems odd that validators are not executed when the value of FormArray changes, but rather only when a new element is added.
To see this behavior in action, you can visit: https://stackblitz.com/edit/angular-reactive-forms-tkdu1n?file=app%2Fapp.component.ts
I would greatly appreciate any assistance with this issue.