Skip to content

Commit 0fee032

Browse files
committed
add back missing commas
1 parent d30e1bf commit 0fee032

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Libraries/Components/Touchable/TouchableOpacity.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ var TouchableOpacity = createReactClass({
6262
* Determines what the opacity of the wrapped view should be when touch is
6363
* active. Defaults to 0.2.
6464
*/
65-
activeOpacity: PropTypes.number
65+
activeOpacity: PropTypes.number,
6666
/**
6767
* Apple TV parallax effects
6868
*/
@@ -71,7 +71,7 @@ var TouchableOpacity = createReactClass({
7171

7272
getDefaultProps: function() {
7373
return {
74-
activeOpacity: 0.2
74+
activeOpacity: 0.2,
7575
};
7676
},
7777

0 commit comments

Comments
 (0)