diff options
author | Eric Bailey <git@esb.lol> | 2024-06-28 08:27:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-28 08:27:54 -0500 |
commit | 1a037d35429b119d1751930068dfcf3b2b94dbde (patch) | |
tree | 1ed67badc6e6d2ac1a2ee09c3c80bfbc65083d95 /src/components/StarterPack | |
parent | 58a97db5b8e9c62d68c4ce6398d1213469ee38b2 (diff) | |
download | voidsky-1a037d35429b119d1751930068dfcf3b2b94dbde.tar.zst |
FeedCard & ListCard cleanups (#4644)
* Extract ListCard from FeedCard * Export FeedCard.Action and optionally include in ListCard * Remove list dual usage from most of FeedCard * Update usages of FeedCard and ListCard * Add back list purpose logic * Make Action comp easier to use, clarify list purpose * Rename Action to SaveButton
Diffstat (limited to 'src/components/StarterPack')
-rw-r--r-- | src/components/StarterPack/Main/FeedsList.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/StarterPack/Main/FeedsList.tsx b/src/components/StarterPack/Main/FeedsList.tsx index e350a422c..7d7cd2047 100644 --- a/src/components/StarterPack/Main/FeedsList.tsx +++ b/src/components/StarterPack/Main/FeedsList.tsx @@ -45,7 +45,7 @@ export const FeedsList = React.forwardRef<SectionRef, ProfilesListProps>( (isWeb || index !== 0) && a.border_t, t.atoms.border_contrast_low, ]}> - <FeedCard.Default type="feed" view={item} /> + <FeedCard.Default view={item} /> </View> ) } |