diff --git a/ui/component/walletSendTip/view.jsx b/ui/component/walletSendTip/view.jsx index ea4406296..ffd7575ac 100644 --- a/ui/component/walletSendTip/view.jsx +++ b/ui/component/walletSendTip/view.jsx @@ -5,7 +5,6 @@ import React from 'react'; import Button from 'component/button'; import { FormField, Form } from 'component/common/form'; import { MINIMUM_PUBLISH_BID, CHANNEL_ANONYMOUS } from 'constants/claim'; -import useIsMobile from 'effects/use-is-mobile'; import CreditAmount from 'component/common/credit-amount'; import I18nMessage from 'component/i18nMessage'; import { Lbryio } from 'lbryinc'; @@ -56,7 +55,6 @@ function WalletSendTip(props: Props) { const [tipError, setTipError] = React.useState(); const [sendAsTip, setSendAsTip] = usePersistedState('comment-support:sendAsTip', true); const [isConfirming, setIsConfirming] = React.useState(false); - const isMobile = useIsMobile(); const [selectedChannel, setSelectedChannel] = usePersistedState('comment-support:channel'); const { claim_id: claimId } = claim; const { channelName } = parseURI(uri); @@ -160,12 +158,14 @@ function WalletSendTip(props: Props) { /> ) : ( - {__( - 'This will increase the overall bid amount for this content, which will boost its ability to be discovered while active.' - )}{' '} + {isSupport + ? __( + 'This will increase the overall bid amount for this content, which will boost its ability to be discovered while active.' + ) + : __('Send a chunk of change to this creator to let them know you appreciate their content!')}{' '}