@@ -748,7 +748,9 @@ export interface FormState<
748748 in out TOnDynamic extends undefined | FormValidateOrFn < TFormData > ,
749749 in out TOnDynamicAsync extends undefined | FormAsyncValidateOrFn < TFormData > ,
750750 in out TOnServer extends undefined | FormAsyncValidateOrFn < TFormData > ,
751- > extends BaseFormState <
751+ >
752+ extends
753+ BaseFormState <
752754 TFormData ,
753755 TOnMount ,
754756 TOnChange ,
@@ -895,8 +897,7 @@ export class FormApi<
895897 in out TOnDynamicAsync extends undefined | FormAsyncValidateOrFn < TFormData > ,
896898 in out TOnServer extends undefined | FormAsyncValidateOrFn < TFormData > ,
897899 in out TSubmitMeta = never ,
898- > implements FieldManipulator < TFormData , TSubmitMeta >
899- {
900+ > implements FieldManipulator < TFormData , TSubmitMeta > {
900901 /**
901902 * The options for the form.
902903 */
@@ -1184,8 +1185,8 @@ export class FormApi<
11841185 const hasOnMountError = Boolean (
11851186 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
11861187 currBaseStore . errorMap ?. onMount ||
1187- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1188- fieldMetaValues . some ( ( f ) => f ?. errorMap ?. onMount ) ,
1188+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
1189+ fieldMetaValues . some ( ( f ) => f ?. errorMap ?. onMount ) ,
11891190 )
11901191
11911192 const isValidating = ! ! isFieldsValidating
0 commit comments