Skip to content

Commit 799f68e

Browse files
committed
fix lint
1 parent 6192e54 commit 799f68e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/Formsy/TextInput.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class TextInput extends Component {
6060
}
6161

6262
TextInput.defaultProps = {
63-
onChange: () => {},
63+
onChange: () => {}
6464
}
6565

6666
TextInput.propTypes = {
@@ -79,7 +79,7 @@ TextInput.propTypes = {
7979
* Show help icon next to the value with the tooltip defined by this prop
8080
* This only has any effect if `readonly` is set to `true`
8181
*/
82-
readonlyValueTooltip: PT.node,
82+
readonlyValueTooltip: PT.node
8383
}
8484

8585
export default hoc(TextInput)

components/HelpIcon/HelpIcon.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const HELP_TOOLTIP_SHOW_DELAY = 300
1616
const HelpIcon = ({
1717
className,
1818
showTooltipDelay,
19-
tooltip,
19+
tooltip
2020
}) => {
2121
const delay = !_.isNumber(showTooltipDelay) ? showTooltipDelay : HELP_TOOLTIP_SHOW_DELAY
2222

@@ -34,7 +34,7 @@ const HelpIcon = ({
3434
HelpIcon.propTypes = {
3535
className: PT.string,
3636
showTooltipDelay: PT.number,
37-
tooltip: PT.node,
37+
tooltip: PT.node
3838
}
3939

4040
export default HelpIcon

0 commit comments

Comments
 (0)