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 9f6172c commit 78c9729Copy full SHA for 78c9729
src/recaptcha.js
@@ -60,7 +60,7 @@ export default class ReCAPTCHA extends React.Component {
60
if (this.props.onErrored) {
61
this.props.onErrored();
62
}
63
- if(this.executionReject){
+ if (this.executionReject) {
64
this.executionReject();
65
delete this.executionResolve;
66
delete this.executionReject;
@@ -71,7 +71,7 @@ export default class ReCAPTCHA extends React.Component {
71
if (this.props.onChange) {
72
this.props.onChange(token);
73
74
- if(this.executionResolve) {
+ if (this.executionResolve) {
75
this.executionResolve(token);
76
77
0 commit comments