Skip to content

Commit

Permalink
Fix subscribed icon showing in mod feed (aeharding#1575)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeharding authored Aug 10, 2024
1 parent 77be837 commit 493cc7c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/pages/shared/SpecialFeedPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ export default function SpecialFeedPage({ type }: SpecialFeedProps) {
if (!sort) return <CenteredSpinner />;

return (
<ShowSubscribedIconContext.Provider value={type !== "Subscribed"}>
<ShowSubscribedIconContext.Provider
value={type === "All" || type === "Local"}
>
<PageTypeContext.Provider value="special-feed">
<WaitUntilPostAppearanceResolved>
<PostCommentFeed
Expand Down

0 comments on commit 493cc7c

Please sign in to comment.