From a2b96e9bacb3bca0fc9dc2e24c2152e7347346c1 Mon Sep 17 00:00:00 2001 From: Ben Wheeler Date: Fri, 26 Jul 2019 22:29:55 -0400 Subject: [PATCH] fixed linting errors --- src/components/formik-forms/formik-radio-button.jsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/components/formik-forms/formik-radio-button.jsx b/src/components/formik-forms/formik-radio-button.jsx index efba3ceda..7523efb10 100644 --- a/src/components/formik-forms/formik-radio-button.jsx +++ b/src/components/formik-forms/formik-radio-button.jsx @@ -19,6 +19,7 @@ const FormikRadioButtonSubComponent = ({ }) => ( {label && ( @@ -57,6 +57,7 @@ FormikRadioButtonSubComponent.propTypes = { value: PropTypes.string }), label: PropTypes.string, + labelClassName: PropTypes.string, value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]) }; @@ -80,12 +81,14 @@ const FormikRadioButton = ({ > {isOther && ( onSetOther(event.target.value)} onFocus={event => onSetOther(event.target.value)} + /* eslint-enable react/jsx-no-bind */ /> )}