fix for electron to redirect to channels following page
This commit is contained in:
parent
0872d95a3b
commit
671f36e819
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ function AppRouter(props: Props) {
|
|||
|
||||
return (
|
||||
<Switch>
|
||||
<Route path={`/`} exact component={ChannelsFollowingPage} />
|
||||
<Route path={`/`} exact component={() => <Redirect to={`/$/${PAGES.CHANNELS_FOLLOWING}`} />} />
|
||||
<Route path={`/$/${PAGES.DISCOVER}`} exact component={DiscoverPage} />
|
||||
<Route path={`/$/${PAGES.AUTH}`} exact component={SignInPage} />
|
||||
<Route path={`/$/${PAGES.TAGS}`} exact component={TagsPage} />
|
||||
|
|
Loading…
Reference in a new issue