show following page for desktop even if not logged in

This commit is contained in:
Sean Yesmunt 2020-01-21 11:49:47 -05:00
parent dba20bc0d3
commit 1698caf8b6

View file

@ -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} />