protected normalizeComponentType()

in src/services/form-validation/FormValidationService.ts [132:135]


  protected normalizeComponentType(type: string): string {
    // Remove 'Latest' and 'Legacy' parts of component types
    return type.replace(/(Latest|Legacy)$/g, '');
  }