diff --git a/src/screens/StarterPack/Landing/index.tsx b/src/screens/StarterPack/Landing/index.tsx
index 4e1a7d36f6..55bd042134 100644
--- a/src/screens/StarterPack/Landing/index.tsx
+++ b/src/screens/StarterPack/Landing/index.tsx
@@ -214,32 +214,25 @@ function LandingScreenInner({
)
}
-function User({displayName, avatar}: {displayName: string; avatar?: string}) {
- const {isTabletOrDesktop} = useWebMediaQueries()
-
- return (
-
-
-
- {displayName}
-
-
- )
-}
-
function ProfilesSet({
profiles,
}: {
profiles: AppBskyActorDefs.ProfileViewBasic[]
}) {
+ const {isTabletOrDesktop} = useWebMediaQueries()
+
return (
{profiles.map(profile => (
-
+
+
+
+ {profile.displayName}
+
+
))}
)