-
## š Bug report
### Current Behavior
using the following validation schema sometime the library throws an error when it's trying to update the errors object because the current error field is muā¦
-
## š Feature Proposal
Add forms to the component library.
Forms should have:
- [ ] form builder: outputs a jsonschema, including validation and field types
- [ ] auto building forms from a jā¦
-
Acceptance Criteria:
**Access Profile**:
The user should be able to access their profile page after logging in.
The profile page should display current details including name, email, and any additionā¦
-
## š Bug report
The documentation says that the returned value from useFormikContext is the same as the ```formik``` props of ````connect````, that includes ````validationSchema````. Also the type deā¦
-
## š Bug report
### Current Behavior
isValid is true once the form mounts, even though the validationSchema invalidates initialValues and the form is untouched.
### Expected behavior
isValā¦
-
## Bug report
### Current Behavior
onSubmit is not running.
### Expected behavior
onSubmit should run when clicking the Add Session button but it doesn't run.
### Reproducible exampleā¦
-
Hello,
Still relatively new to Formik. I'm using FieldArray to render different types of input fields. An example payload would be an array of objects like below. Filter_type would determine what kā¦
-
## Feature request
### Current Behavior
We have noticed that we want different validation rules to be enforced at different times. For example, in a run-of-the-mill "change password" form (curā¦
-
## š Bug report
### Current Behavior
I have a test that basically screenshots a form after removing focus from field that is required (while not filling in any value). For validations, I'm usingā¦
-
## š Bug report
### Current Behavior
Formik's `validate` handler swallow all exceptions, silently.
```
function validate() {
throw new Error("Oooops, s*** went wrong");
}
```
#ā¦