Skip to content

Commit aaf5a95

Browse files
ci: apply automated fixes and generate docs
1 parent 462b652 commit aaf5a95

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/form-core/src/FieldApi.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1855,7 +1855,9 @@ export class FieldApi<
18551855
// This prevents unnecessary re-renders when there are no async validators
18561856
// See: https://github.com/TanStack/form/issues/1130
18571857
const hasAsyncValidators = validates.some((v) => v.validate)
1858-
const hasLinkedAsyncValidators = linkedFieldValidates.some((v) => v.validate)
1858+
const hasLinkedAsyncValidators = linkedFieldValidates.some(
1859+
(v) => v.validate,
1860+
)
18591861

18601862
if (hasAsyncValidators) {
18611863
if (!this.state.meta.isValidating) {

0 commit comments

Comments
 (0)