@@ -749,7 +749,9 @@ export interface FormState<
749749 in out TOnDynamic extends undefined | FormValidateOrFn < TFormData > ,
750750 in out TOnDynamicAsync extends undefined | FormAsyncValidateOrFn < TFormData > ,
751751 in out TOnServer extends undefined | FormAsyncValidateOrFn < TFormData > ,
752- > extends BaseFormState <
752+ >
753+ extends
754+ BaseFormState <
753755 TFormData ,
754756 TOnMount ,
755757 TOnChange ,
@@ -896,8 +898,7 @@ export class FormApi<
896898 in out TOnDynamicAsync extends undefined | FormAsyncValidateOrFn < TFormData > ,
897899 in out TOnServer extends undefined | FormAsyncValidateOrFn < TFormData > ,
898900 in out TSubmitMeta = never ,
899- > implements FieldManipulator < TFormData , TSubmitMeta >
900- {
901+ > implements FieldManipulator < TFormData , TSubmitMeta > {
901902 /**
902903 * The options for the form.
903904 */
@@ -1185,8 +1186,8 @@ export class FormApi<
11851186 const hasOnMountError = Boolean (
11861187 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
11871188 currBaseStore . errorMap ?. onMount ||
1188- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1189- fieldMetaValues . some ( ( f ) => f ?. errorMap ?. onMount ) ,
1189+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1190+ fieldMetaValues . some ( ( f ) => f ?. errorMap ?. onMount ) ,
11901191 )
11911192
11921193 const isValidating = ! ! isFieldsValidating
0 commit comments