@7shifts/sous-chef 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1504,10 +1504,10 @@ var useFieldControllers = function useFieldControllers(_ref) {
|
|
|
1504
1504
|
error: error,
|
|
1505
1505
|
value: value,
|
|
1506
1506
|
onChange: function onChange(e) {
|
|
1507
|
-
return _onChange && _onChange(
|
|
1507
|
+
return _onChange && _onChange(e.target.value);
|
|
1508
1508
|
},
|
|
1509
1509
|
onBlur: function onBlur(e) {
|
|
1510
|
-
return _onBlur && _onBlur(
|
|
1510
|
+
return _onBlur && _onBlur(e.target.value);
|
|
1511
1511
|
}
|
|
1512
1512
|
};
|
|
1513
1513
|
var formikState = getFormikState(name, formik);
|