We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4665e9b commit e2baa02Copy full SHA for e2baa02
src/recaptcha.js
@@ -5,6 +5,7 @@ export default class ReCAPTCHA extends React.Component {
5
constructor() {
6
super();
7
this.handleExpired = this.handleExpired.bind(this);
8
+ this.handleErrored = this.handleErrored.bind(this);
9
this.handleRecaptchaRef = this.handleRecaptchaRef.bind(this);
10
}
11
@@ -45,6 +46,7 @@ export default class ReCAPTCHA extends React.Component {
45
46
this.props.onChange(null);
47
48
49
+
50
handleErrored() {
51
if (this.props.onErrored) this.props.onErrored();
52
0 commit comments