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 961f309 commit 50ae775Copy full SHA for 50ae775
src/recaptcha.js
@@ -11,6 +11,7 @@ const ReCAPTCHA = React.createClass({
11
tabindex: PropTypes.number,
12
onExpired: PropTypes.func,
13
size: PropTypes.oneOf(["compact", "normal"]),
14
+ stoken: PropTypes.string,
15
},
16
17
getInitialState() {
@@ -57,6 +58,7 @@ const ReCAPTCHA = React.createClass({
57
58
tabindex: this.props.tabindex,
59
"expired-callback": this.handleExpired,
60
size: this.props.size,
61
+ stoken: this.props.stoken,
62
});
63
this.setState({
64
widgetId: id,
0 commit comments