diff --git a/webapp/channels/src/components/app_bar/app_bar_marketplace.tsx b/webapp/channels/src/components/app_bar/app_bar_marketplace.tsx index bce6c31fd6..0c113498eb 100644 --- a/webapp/channels/src/components/app_bar/app_bar_marketplace.tsx +++ b/webapp/channels/src/components/app_bar/app_bar_marketplace.tsx @@ -2,7 +2,6 @@ // See LICENSE.txt for license information. import React, {useCallback} from 'react'; -import {Tooltip} from 'react-bootstrap'; import {useIntl} from 'react-intl'; import {useDispatch} from 'react-redux'; @@ -10,10 +9,10 @@ import {ViewGridPlusOutlineIcon} from '@mattermost/compass-icons/components'; import {openModal} from 'actions/views/modals'; -import OverlayTrigger from 'components/overlay_trigger'; import MarketplaceModal from 'components/plugin_marketplace/marketplace_modal'; +import WithTooltip from 'components/with_tooltip'; -import {Constants, ModalIdentifiers} from 'utils/constants'; +import {ModalIdentifiers} from 'utils/constants'; const AppBarMarketplace = () => { const {formatMessage} = useIntl(); @@ -32,15 +31,10 @@ const AppBarMarketplace = () => { const label = formatMessage({id: 'app_bar.marketplace', defaultMessage: 'App Marketplace'}); return ( - - {label} - - )} > - + ); };