diff --git a/src/components/Tooltip/index.js b/src/components/Tooltip/index.js index e737a7d75928..890c249e075b 100644 --- a/src/components/Tooltip/index.js +++ b/src/components/Tooltip/index.js @@ -155,7 +155,6 @@ class Tooltip extends PureComponent { this.wrapperView = el} style={this.props.containerStyles} - onFocus={this.showTooltip} onBlur={this.hideTooltip} focusable > @@ -174,15 +173,6 @@ class Tooltip extends PureComponent { ref(el); } }, - onFocus: (el) => { - this.showTooltip(); - - // Call the original onFocus, if any - const {onFocus} = this.props.children; - if (_.isFunction(onFocus)) { - onFocus(el); - } - }, onBlur: (el) => { this.hideTooltip();