Pascal Küsgen

Results 18 comments of Pascal Küsgen

I think there is a bug in the definition of the `ValidationError` type It is [currently defined](https://github.com/TanStack/form/blob/main/packages/form-core/src/types.ts#L3) as: ```ts export type ValidationError = undefined | false | null | string...

@crutchcorn I implemented the changes as requested and added some more tests, could you please re-check?

@Balastrong the isBlurred state of the fields in the form are kept now (removed the `batch` part and updated the test) - FYI: you'll need to use `submissionAttempts` instead of...

👍 this would solve my use-case. Is it possible that the Developer doesn't have to specify the Type when using the `createMenuItems` function - can the type be inferred from...

Depending on your layout you'll need to add additional classes from [react-remove-scroll-bar ](https://github.com/theKashey/react-remove-scroll-bar) which is used internally for the radix-ui/primitives. I needed to add the `fullWidthClassName` to my "main div"...

As the ZodAdapter is deprecated and will be removed I moved the test to go against the Standard Validator, see #1077

I tried the exact same thing. @Balastrong answered the following in the [Discord-Channel](https://discord.com/channels/719702312431386674/1280804210845417482): > You shouldn't manually set canSubmit [via defaultState] as it's overridden by the form > […] the...

Thoughts: - you do not have to write the code the same as in the docs/examples - you can keep the eslint-rule turned on - it is just one linting...