We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 462b652 commit aaf5a95Copy full SHA for aaf5a95
1 file changed
packages/form-core/src/FieldApi.ts
@@ -1855,7 +1855,9 @@ export class FieldApi<
1855
// This prevents unnecessary re-renders when there are no async validators
1856
// See: https://github.com/TanStack/form/issues/1130
1857
const hasAsyncValidators = validates.some((v) => v.validate)
1858
- const hasLinkedAsyncValidators = linkedFieldValidates.some((v) => v.validate)
+ const hasLinkedAsyncValidators = linkedFieldValidates.some(
1859
+ (v) => v.validate,
1860
+ )
1861
1862
if (hasAsyncValidators) {
1863
if (!this.state.meta.isValidating) {
0 commit comments