diff --git a/static/app-strings.json b/static/app-strings.json
index 17651116a..d25507916 100644
--- a/static/app-strings.json
+++ b/static/app-strings.json
@@ -1169,12 +1169,13 @@
"Changelog": "Changelog",
"Boost your content": "Boost your content",
"Boost This Video": "Boost This Video",
+ "Boost This Content": "Boost This Content",
+ "Boost": "Boost",
"Send Revocable Support": "Send Revocable Support",
"Send a %amount% Tip": "Send a %amount% Tip",
"Channel to show support as": "Channel to show support as",
"Buy more LBRY Credits": "Buy more LBRY Credits",
"Support this content": "Support this content",
- "Make this a tip": "Make this a tip",
"Custom support amount": "Custom support amount",
"(%lbc_balance% Credits available)": "(%lbc_balance% Credits available)",
"Loading your channels...": "Loading your channels...",
diff --git a/ui/component/walletSendTip/view.jsx b/ui/component/walletSendTip/view.jsx
index 9f96efffa..3c147c3a3 100644
--- a/ui/component/walletSendTip/view.jsx
+++ b/ui/component/walletSendTip/view.jsx
@@ -1,5 +1,4 @@
// @flow
-import { SIMPLE_SITE } from 'config';
import * as ICONS from 'constants/icons';
import * as PAGES from 'constants/pages';
import React from 'react';
@@ -64,7 +63,7 @@ function WalletSendTip(props: Props) {
const { channelName } = parseURI(uri);
const noBalance = balance === 0;
const tipAmount = useCustomTip ? customTipAmount : presetTipAmount;
- const isSupport = claimIsMine ? true : SIMPLE_SITE ? false : !sendAsTip;
+ const isSupport = claimIsMine || !sendAsTip;
React.useEffect(() => {
const regexp = RegExp(/^(\d*([.]\d{0,8})?)$/);
@@ -157,21 +156,37 @@ function WalletSendTip(props: Props) {
/>
) : (