diff --git a/src/components/captcha/captcha.jsx b/src/components/captcha/captcha.jsx index cb51f4d79..f6ba27efe 100644 --- a/src/components/captcha/captcha.jsx +++ b/src/components/captcha/captcha.jsx @@ -69,8 +69,8 @@ class Captcha extends React.Component { } } Captcha.propTypes = { - onCaptchaError: PropTypes.func, - onCaptchaLoad: PropTypes.func, - onCaptchaSolved: PropTypes.func + onCaptchaError: PropTypes.func.isRequired, + onCaptchaLoad: PropTypes.func.isRequired, + onCaptchaSolved: PropTypes.func.isRequired }; module.exports = Captcha;