Explore button: remove tooltip

This commit is contained in:
Alexander Zobnin
2020-05-18 14:23:33 +03:00
parent 9f69dc9b48
commit 85d9855e51

View File

@@ -319,10 +319,8 @@ interface ExploreButtonProps {
const ExploreButton: React.FC<ExploreButtonProps> = ({ onClick }) => { const ExploreButton: React.FC<ExploreButtonProps> = ({ onClick }) => {
return ( return (
<Tooltip placement="bottom" content="Open in Explore">
<button className="btn problem-explore-button" onClick={onClick}> <button className="btn problem-explore-button" onClick={onClick}>
<FAIcon icon="compass" /><span>Explore</span> <FAIcon icon="compass" /><span>Explore</span>
</button> </button>
</Tooltip>
); );
}; };