in src/services/form-validation/FormValidationService.ts [250:256]
protected _findComponentInComponents(components: FormComponent[], key: string): FormComponent | null {
const foundComponents = findComponents(components, (component: FormComponent) => component.key === key);
if (foundComponents?.length) {
return foundComponents[0];
}
return null;
}