diff options
Diffstat (limited to 'src/screens/StarterPack/StarterPackLandingScreen.tsx')
-rw-r--r-- | src/screens/StarterPack/StarterPackLandingScreen.tsx | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index a7bc451b7..2b450494b 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -239,22 +239,25 @@ function LandingScreenLoaded({ t.atoms.border_contrast_low, ] }> - {starterPack.listItemsSample?.slice(0, 8).map((item, i) => ( - <View - key={item.subject.did} - style={[ - a.py_lg, - a.px_md, - (!isTabletOrDesktop || i !== 0) && a.border_t, - t.atoms.border_contrast_low, - {pointerEvents: 'none'}, - ]}> - <ProfileCard - profile={item.subject} - moderationOpts={moderationOpts} - /> - </View> - ))} + {starterPack.listItemsSample + ?.filter(p => !p.subject.associated?.labeler) + .slice(0, 8) + .map((item, i) => ( + <View + key={item.subject.did} + style={[ + a.py_lg, + a.px_md, + (!isTabletOrDesktop || i !== 0) && a.border_t, + t.atoms.border_contrast_low, + {pointerEvents: 'none'}, + ]}> + <ProfileCard + profile={item.subject} + moderationOpts={moderationOpts} + /> + </View> + ))} </View> </View> )} |