Skip to content

Commit

Permalink
[Tooltip] Remove superfluous argument in handleBlur call (mui#20271)
Browse files Browse the repository at this point in the history
  • Loading branch information
CptWesley authored and EsoterikStare committed Mar 30, 2020
1 parent 7c88f09 commit 9ea529d
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 9ea529d

Please sign in to comment.