about summary refs log tree commit diff
path: root/src/view/screens/Profile.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-09-19 21:44:23 -0700
committerGitHub <noreply@github.com>2023-09-19 21:44:23 -0700
commit971c8025e6cadec74525d42a978dabddb878b8eb (patch)
tree8b215839a238966e0a1814f50ec1598ccad14f43 /src/view/screens/Profile.tsx
parent753fb8bfbc33736915e8820486ec8c6cc99d6bb2 (diff)
downloadvoidsky-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.tsx4
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 {