Skip to content

Commit 0552412

Browse files
committed
Fixup missing trailing ,
1 parent bb9b01a commit 0552412

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/recaptcha.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const ReCAPTCHA = React.createClass({
1212
onExpired: PropTypes.func,
1313
size: PropTypes.oneOf(["compact", "normal", "invisible"]),
1414
stoken: PropTypes.string,
15-
badge: PropTypes.oneOf(["bottomright", "bottomleft ", "inline"])
15+
badge: PropTypes.oneOf(["bottomright", "bottomleft ", "inline"]),
1616
},
1717

1818
getInitialState () {
@@ -25,7 +25,7 @@ const ReCAPTCHA = React.createClass({
2525
type: "image",
2626
tabindex: 0,
2727
size: "normal",
28-
badge: "bottomright"
28+
badge: "bottomright",
2929
};
3030
},
3131

@@ -70,7 +70,7 @@ const ReCAPTCHA = React.createClass({
7070
"expired-callback": this.handleExpired,
7171
size: this.props.size,
7272
stoken: this.props.stoken,
73-
badge: this.props.badge
73+
badge: this.props.badge,
7474
});
7575
this.setState({
7676
widgetId: id,

0 commit comments

Comments
 (0)