Make props required

This commit is contained in:
picklesrus 2020-03-27 09:03:45 -04:00
parent f9e48973bc
commit 187406938a

View file

@ -69,8 +69,8 @@ class Captcha extends React.Component {
} }
} }
Captcha.propTypes = { Captcha.propTypes = {
onCaptchaError: PropTypes.func, onCaptchaError: PropTypes.func.isRequired,
onCaptchaLoad: PropTypes.func, onCaptchaLoad: PropTypes.func.isRequired,
onCaptchaSolved: PropTypes.func onCaptchaSolved: PropTypes.func.isRequired
}; };
module.exports = Captcha; module.exports = Captcha;