diff --git a/static/app-strings.json b/static/app-strings.json index f00d1fbc4..b4cc13f9e 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -701,11 +701,7 @@ "Bid position must be a number.": "Bid position must be a number.", "Copy": "Copy", "Copy Link": "Copy Link", - "Link copied.": "Link copied.", - "Failed to copy link.": "Failed to copy link.", "Copy RSS URL": "Copy RSS URL", - "RSS URL copied.": "RSS URL copied.", - "Failed to copy RSS URL.": "Failed to copy RSS URL.", "Text copied": "Text copied", "Rewards Disabled": "Rewards Disabled", "Wallet servers are used to relay data to and from the LBRY blockchain. They also determine what content shows in trending or is blocked. %learn_more%.": "Wallet servers are used to relay data to and from the LBRY blockchain. They also determine what content shows in trending or is blocked. %learn_more%.", diff --git a/ui/component/channelContent/index.js b/ui/component/channelContent/index.js index 8d3bbc6fb..5338a7218 100644 --- a/ui/component/channelContent/index.js +++ b/ui/component/channelContent/index.js @@ -14,7 +14,7 @@ import { withRouter } from 'react-router'; import { selectUserVerifiedEmail } from 'redux/selectors/user'; import { makeSelectClientSetting, selectShowMatureContent } from 'redux/selectors/settings'; -import ChannelContent from './view'; +import ChannelPage from './view'; const select = (state, props) => { const { search } = props.location; @@ -37,4 +37,4 @@ const perform = (dispatch) => ({ doResolveUris: (uris, returnCachedUris) => dispatch(doResolveUris(uris, returnCachedUris)), }); -export default withRouter(connect(select, perform)(ChannelContent)); +export default withRouter(connect(select, perform)(ChannelPage)); diff --git a/ui/component/channelEdit/index.js b/ui/component/channelEdit/index.js index 82618960f..3835fdf88 100644 --- a/ui/component/channelEdit/index.js +++ b/ui/component/channelEdit/index.js @@ -17,7 +17,7 @@ import { } from 'lbry-redux'; import { doOpenModal } from 'redux/actions/app'; import { doUpdateBlockListForPublishedChannel } from 'redux/actions/comments'; -import ChannelForm from './view'; +import ChannelPage from './view'; const select = (state, props) => ({ claim: makeSelectClaimForUri(props.uri)(state), @@ -52,4 +52,4 @@ const perform = (dispatch) => ({ clearChannelErrors: () => dispatch(doClearChannelErrors()), }); -export default connect(select, perform)(ChannelForm); +export default connect(select, perform)(ChannelPage); diff --git a/ui/component/channelMuteButton/view.jsx b/ui/component/channelMuteButton/view.jsx index a87478d7e..2ffa6866b 100644 --- a/ui/component/channelMuteButton/view.jsx +++ b/ui/component/channelMuteButton/view.jsx @@ -10,7 +10,7 @@ type Props = { doChannelUnmute: (string, boolean) => void, }; -function ChannelMuteButton(props: Props) { +function ChannelBlockButton(props: Props) { const { uri, doChannelMute, doChannelUnmute, isMuted } = props; function handleClick() { @@ -22,8 +22,12 @@ function ChannelMuteButton(props: Props) { } return ( -