diff --git a/ui/page/channel/view.jsx b/ui/page/channel/view.jsx index 18a6daf65..43b1850f9 100644 --- a/ui/page/channel/view.jsx +++ b/ui/page/channel/view.jsx @@ -284,40 +284,19 @@ function ChannelPage(props: Props) { ) : ( <Tabs onChange={onTabChange} index={tabIndex}> <TabList className="tabs__list--channel-page"> - <Tab disabled={editing}>{__('Publishes')}</Tab> - <Tab disabled={editing}>{__('Playlists')}</Tab> - <Tab disabled={editing}>{__('Reposts')}</Tab> + <Tab disabled={editing}>{__('Content')}</Tab> <Tab>{editing ? __('Editing Your Channel') : __('About --[tab title in Channel Page]--')}</Tab> <Tab disabled={editing}>{__('Community')}</Tab> </TabList> <TabPanels> <TabPanel> <ChannelContent - claimType={'stream'} uri={uri} channelIsBlackListed={channelIsBlackListed} viewHiddenChannels empty={<section className="main--empty">{__('No Content Found')}</section>} /> </TabPanel> - <TabPanel> - <ChannelContent - claimType={'collection'} - uri={uri} - channelIsBlackListed={channelIsBlackListed} - viewHiddenChannels - empty={collectionEmpty} - /> - </TabPanel> - <TabPanel> - <ChannelContent - claimType={'repost'} - uri={uri} - channelIsBlackListed={channelIsBlackListed} - viewHiddenChannels - empty={<section className="main--empty">{__('No Reposts Found')}</section>} - /> - </TabPanel> <TabPanel> <ChannelAbout uri={uri} /> </TabPanel>