Skip to content

Commit

Permalink
fix: show repo filters on initial feeds route visit (#1426)
Browse files Browse the repository at this point in the history
  • Loading branch information
OgDev-01 committed Jul 25, 2023
1 parent a4e2716 commit 833ee30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/feed/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const Feeds: WithPageLayout<HighlightSSRProps> = (props: HighlightSSRProps) => {
} else if (activeTab === "following") {
setRepoList(repoTofilterList(followersRepo));
}
}, [activeTab]);
}, [activeTab, repos]);

useEffect(() => {
if (singleHighlight && !openSingleHighlight) {
Expand Down

0 comments on commit 833ee30

Please sign in to comment.