@ -158,7 +158,7 @@ function InternalFormItem<Values = any>(props: FormItemProps<Values>): React.Rea
// >>>>> Collect noStyle Field error to the top FormItem
const onSubItemMetaChange = ( subMeta : Meta & { destroy : boolean } , uniqueKeys : React.Key [ ] ) = > {
// Only `noStyle` sub item will trigger
setSubFieldErrors ( prevSubFieldErrors = > {
setSubFieldErrors ( ( prevSubFieldErrors ) = > {
const clone = {
. . . prevSubFieldErrors ,
} ;
@ -184,7 +184,7 @@ function InternalFormItem<Values = any>(props: FormItemProps<Values>): React.Rea
const errorList : string [ ] = [ . . . meta . errors ] ;
const warningList : string [ ] = [ . . . meta . warnings ] ;
Object . values ( subFieldErrors ) . forEach ( subFieldError = > {
Object . values ( subFieldErrors ) . forEach ( ( subFieldError ) = > {
errorList . push ( . . . ( subFieldError . errors || [ ] ) ) ;
warningList . push ( . . . ( subFieldError . warnings || [ ] ) ) ;
} ) ;
@ -254,7 +254,7 @@ function InternalFormItem<Values = any>(props: FormItemProps<Values>): React.Rea
? required
: ! ! (
rules &&
rules . some ( rule = > {
rules . some ( ( rule ) = > {
if ( rule && typeof rule === 'object' && rule . required && ! rule . warningOnly ) {
return true ;
}
@ -294,7 +294,7 @@ function InternalFormItem<Values = any>(props: FormItemProps<Values>): React.Rea
warning (
! hasName ,
'Form.Item' ,
"A `Form.Item` with a render function cannot be a field, and thus cannot have a `name` prop." ,
'A `Form.Item` with a render function cannot be a field, and thus cannot have a `name` prop.' ,
) ;
} else if ( dependencies && ! isRenderProps && ! hasName ) {
warning (
@ -343,7 +343,7 @@ function InternalFormItem<Values = any>(props: FormItemProps<Values>): React.Rea
. . . toArray ( mergedValidateTrigger ) ,
] ) ;
triggers . forEach ( eventName = > {
triggers . forEach ( ( eventName ) = > {
childProps [ eventName ] = ( . . . args : any [ ] ) = > {
mergedControl [ eventName ] ? . ( . . . args ) ;
children . props [ eventName ] ? . ( . . . args ) ;