diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-09-19 21:44:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-19 21:44:23 -0700 |
commit | 971c8025e6cadec74525d42a978dabddb878b8eb (patch) | |
tree | 8b215839a238966e0a1814f50ec1598ccad14f43 /src/view/screens/Profile.tsx | |
parent | 753fb8bfbc33736915e8820486ec8c6cc99d6bb2 (diff) | |
download | voidsky-971c8025e6cadec74525d42a978dabddb878b8eb.tar.zst |
Feeds tab fixes (#1486)
* Bold the saved feeds on mobile * Improve the saved feeds loading state * Add soft reset handler to feeds page * Show feed descriptions in profile listing * Add an 'about this feed' modal * Fix type assertion
Diffstat (limited to 'src/view/screens/Profile.tsx')
-rw-r--r-- | src/view/screens/Profile.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/screens/Profile.tsx b/src/view/screens/Profile.tsx index 241bae1ed..efcb588f6 100644 --- a/src/view/screens/Profile.tsx +++ b/src/view/screens/Profile.tsx @@ -187,7 +187,9 @@ export const ProfileScreen = withAuthRequired( /> ) } else if (item instanceof CustomFeedModel) { - return <CustomFeed item={item} showSaveBtn showLikes /> + return ( + <CustomFeed item={item} showSaveBtn showLikes showDescription /> + ) } // if section is posts or posts & replies } else { |