Skip to content

Commit

Permalink
[Tooltip] Remove superfluous argument in handleBlur call (#20271)
Browse files Browse the repository at this point in the history
  • Loading branch information
CptWesley committed Mar 25, 2020
1 parent 0e2e8ee commit 037785e
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 037785e

Please sign in to comment.