Skip to content

Commit

Permalink
Remove superfluous argument in handleBlur call
Browse files Browse the repository at this point in the history
  • Loading branch information
CptWesley committed Mar 25, 2020
1 parent 4092ff4 commit 8d397ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/material-ui/src/Tooltip/Tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ const Tooltip = React.forwardRef(function Tooltip(props, ref) {
if (childrenProps.onBlur && forward) {
childrenProps.onBlur(event);
}
handleBlur(event);
handleBlur();
}

if (
Expand Down

0 comments on commit 8d397ab

Please sign in to comment.