Removed unused CommunityTimeline references, public timeline route

• Removed:
- unused CommunityTimeline references, public timeline route
This commit is contained in:
mgabdev
2021-01-13 21:43:18 -05:00
parent 89a16b101f
commit 3c252e0f4c
5 changed files with 0 additions and 82 deletions

View File

@@ -71,7 +71,6 @@ import {
ChatConversationRequests,
ChatConversationBlockedAccounts,
ChatConversationMutes,
CommunityTimeline,
Compose,
Deck,
DMCA,
@@ -227,7 +226,6 @@ class SwitchingArea extends React.PureComponent {
<WrappedRoute path='/messages/muted_conversations' exact page={MessagesPage} component={ChatConversationMutes} content={children} componentParams={{ isSettings: true }} />
<WrappedRoute path='/messages/:chatConversationId' exact page={MessagesPage} component={Messages} content={children} componentParams={{ source: 'approved' }} />
<WrappedRoute path='/timeline/all' exact page={CommunityPage} component={CommunityTimeline} content={children} componentParams={{ title: 'Community Feed' }} />
<WrappedRoute path='/timeline/pro' exact page={ProPage} component={ProTimeline} content={children} componentParams={{ title: 'Pro Feed' }} />
<WrappedRoute path='/groups' publicRoute exact page={GroupsPage} component={GroupCollectionTimeline} content={children} componentParams={{ activeTab: 'timeline', collectionType: 'member' }} />