diff --git a/static/app-strings.json b/static/app-strings.json index 50c43d265..872ccec26 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -2092,9 +2092,7 @@ "Load More": "Load More", "Collection": "Collection", "%channelName% isn't live right now, but the chat is! Check back later to watch the stream.": "%channelName% isn't live right now, but the chat is! Check back later to watch the stream.", - "Show this channel your appreciation by sending a donation of Credits. ": "Show this channel your appreciation by sending a donation of Credits. ", "Review": "Review", "Add a Card ": "Add a Card ", - " Tip Creators": " Tip Creators", "--end--": "--end--" } diff --git a/ui/component/walletSendTip/view.jsx b/ui/component/walletSendTip/view.jsx index 9f62c11ce..f473ec736 100644 --- a/ui/component/walletSendTip/view.jsx +++ b/ui/component/walletSendTip/view.jsx @@ -176,13 +176,13 @@ function WalletSendTip(props: Props) { }); } else if (activeTab === TAB_FIAT) { iconToUse = ICONS.FINANCE; - explainerText = __('Show this channel your appreciation by sending a donation in USD. '); + explainerText = __('Show this channel your appreciation by sending a donation in USD.'); // if (!hasCardSaved) { // explainerText += __('You must add a card to use this functionality.'); // } } else if (activeTab === TAB_LBC) { iconToUse = ICONS.LBC; - explainerText = __('Show this channel your appreciation by sending a donation of Credits. '); + explainerText = __('Show this channel your appreciation by sending a donation of Credits.'); } const isSupport = claimIsMine || activeTab === TAB_BOOST;