in src/components/FormBuilderField.js [65:77]
value: getIn(props.formik.values, props.path),
};
}
componentDidMount() {
this.props.formik.setFieldTouched(this.props.path, false, false);
}
componentDidUpdate(prevProps) {
const nextFieldValue = getIn(this.props.formik.values, this.props.path);
const prevFieldValue = getIn(prevProps.formik.values, prevProps.path);
if (!isEqual(nextFieldValue, prevFieldValue)) {