Merge remote-tracking branch 'upstream/develop' into captcha-component-ta

This commit is contained in:
picklesrus 2020-03-27 09:50:50 -04:00
commit 36ef3222c0
3 changed files with 1047 additions and 546 deletions

1585
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -128,7 +128,7 @@
"redux-mock-store": "^1.2.3",
"redux-thunk": "2.0.1",
"sass-loader": "6.0.6",
"scratch-gui": "0.1.0-prerelease.20200319183521",
"scratch-gui": "0.1.0-prerelease.20200325184934",
"scratch-l10n": "latest",
"selenium-webdriver": "3.6.0",
"slick-carousel": "1.6.0",

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;