show following page for desktop even if not logged in
This commit is contained in:
parent
dba20bc0d3
commit
1698caf8b6
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ function AppRouter(props: Props) {
|
|||
<Route
|
||||
path={`/$/${PAGES.CHANNELS_FOLLOWING}`}
|
||||
exact
|
||||
component={isAuthenticated ? ChannelsFollowingPage : DiscoverPage}
|
||||
component={isAuthenticated || !IS_WEB ? ChannelsFollowingPage : DiscoverPage}
|
||||
/>
|
||||
<Route path={`/$/${PAGES.CHANNELS_FOLLOWING_MANAGE}`} exact component={ChannelsFollowingManagePage} />
|
||||
<Route path={`/$/${PAGES.HELP}`} exact component={HelpPage} />
|
||||
|
|
Loading…
Reference in a new issue