Skip to content
This repository was archived by the owner on Dec 24, 2019. It is now read-only.

Commit 68f8564

Browse files
author
Patrick Burtchaell
committed
Remove trailing commas
1 parent 2d0cf29 commit 68f8564

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/defaultPropTypes.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import PropTypes from 'prop-types';
33
export default {
44
message: PropTypes.oneOfType([
55
PropTypes.string,
6-
PropTypes.element,
6+
PropTypes.element
77
]).isRequired,
88
action: PropTypes.oneOfType([
99
PropTypes.bool,
1010
PropTypes.string,
11-
PropTypes.node,
11+
PropTypes.node
1212
]),
1313
onClick: PropTypes.func,
1414
style: PropTypes.bool,
@@ -18,14 +18,14 @@ export default {
1818
activeBarStyle: PropTypes.object,
1919
dismissAfter: PropTypes.oneOfType([
2020
PropTypes.bool,
21-
PropTypes.number,
21+
PropTypes.number
2222
]),
2323
onDismiss: PropTypes.func,
2424
className: PropTypes.string,
2525
activeClassName: PropTypes.string,
2626
isActive: PropTypes.bool,
2727
title: PropTypes.oneOfType([
2828
PropTypes.string,
29-
PropTypes.node,
30-
]),
29+
PropTypes.node
30+
])
3131
};

0 commit comments

Comments
 (0)