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 */ /> )}