How to update the state on redux store when onChange in formik and show the message based on value of onChange. Can you please guide me to do that?
<TextInput
name="zipCode"
placeholder="XXXXX"
type="text"
className="form-control"
id="gaf-zipcode"
title={props.getanzipcodeData.tooltipText}
aria-label="zipcode"
aria-describedby="basic-addon1"
error={touched.zipCode && errors.zipCode}
value={values.zipCode}
onChange={(e) => { handleZipChange(e, setFieldValue); }}
onBlur={handleBlur}
/>
Checkout https://github.com/jaredpalmer/formik-effect as well as #271
@jaredpalmer, Thanks Bro.
Most helpful comment
Checkout https://github.com/jaredpalmer/formik-effect as well as #271