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 = {
onCaptchaError: PropTypes.func,
onCaptchaLoad: PropTypes.func,
onCaptchaSolved: PropTypes.func
onCaptchaError: PropTypes.func.isRequired,
onCaptchaLoad: PropTypes.func.isRequired,
onCaptchaSolved: PropTypes.func.isRequired
};
module.exports = Captcha;