Fix display of global feed

merge-requests/3337/head
Alex Gleason 2025-03-13 01:58:43 -05:00
rodzic 207b73b837
commit bb4608d35d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -49,7 +49,7 @@ const PostsTab = () => {
</>
)}
{tokens.size ? <PublicTimeline /> : <SearchResults /> }
{tokens.size ? <SearchResults /> : <PublicTimeline />}
</>
)}
@ -153,9 +153,9 @@ const ExplorePage = () => {
</div>
<Switch>
<Route exact path={'/explore'} component={PostsTab} />
{features.nostr && <Route path={'/explore/trends'} component={TrendsTab} />}
<Route path={'/explore/accounts'} component={AccountsTab} />
<Route exact path='/explore' component={PostsTab} />
{features.nostr && <Route path='/explore/trends' component={TrendsTab} />}
<Route path='/explore/accounts' component={AccountsTab} />
</Switch>
</Stack>