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/screens/StarterPack/StarterPackLandingScreen.tsx | |
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/screens/StarterPack/StarterPackLandingScreen.tsx')
-rw-r--r-- | src/screens/StarterPack/StarterPackLandingScreen.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index 12420333d..d34af1f6f 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -316,7 +316,7 @@ function LandingScreenLoaded({ t.atoms.border_contrast_low, ]} key={feed.uri}> - <FeedCard.Default type="feed" view={feed} /> + <FeedCard.Default view={feed} /> </View> ))} </View> |