diff --git a/ui/component/channelContent/index.js b/ui/component/channelContent/index.js index 5338a7218..8d3bbc6fb 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 ChannelPage from './view'; +import ChannelContent 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)(ChannelPage)); +export default withRouter(connect(select, perform)(ChannelContent)); diff --git a/ui/component/channelEdit/index.js b/ui/component/channelEdit/index.js index 3835fdf88..82618960f 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 ChannelPage from './view'; +import ChannelForm 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)(ChannelPage); +export default connect(select, perform)(ChannelForm); diff --git a/ui/component/channelMuteButton/view.jsx b/ui/component/channelMuteButton/view.jsx index 2ffa6866b..a87478d7e 100644 --- a/ui/component/channelMuteButton/view.jsx +++ b/ui/component/channelMuteButton/view.jsx @@ -10,7 +10,7 @@ type Props = { doChannelUnmute: (string, boolean) => void, }; -function ChannelBlockButton(props: Props) { +function ChannelMuteButton(props: Props) { const { uri, doChannelMute, doChannelUnmute, isMuted } = props; function handleClick() { @@ -22,12 +22,8 @@ function ChannelBlockButton(props: Props) { } return ( -