componentDidUpdate()

in src/components/FormBuilderField.js [73:80]


	componentDidUpdate(prevProps) {
		const nextFieldValue = getIn(this.props.formik.values, this.props.path);
		const prevFieldValue = getIn(prevProps.formik.values, prevProps.path);

		if (!isEqual(nextFieldValue, prevFieldValue)) {
			this.setState({ value: nextFieldValue }); // eslint-disable-line react/no-did-update-set-state
		}
	}