refactor(feed): wrap placeholder description placeholder in full-width view

This commit is contained in:
Caidan Williams
2025-07-28 16:56:00 -07:00
committed by Austin McKinley
parent 4ba7453aa8
commit 573f602f4c
+3 -4
View File
@@ -69,10 +69,9 @@ export function SuggestedFollowPlaceholder() {
<View style={[a.flex_col, a.align_center, a.gap_sm]}> <View style={[a.flex_col, a.align_center, a.gap_sm]}>
<ProfileCard.AvatarPlaceholder size={88} /> <ProfileCard.AvatarPlaceholder size={88} />
<ProfileCard.NamePlaceholder /> <ProfileCard.NamePlaceholder />
<ProfileCard.DescriptionPlaceholder <View style={[a.w_full]}>
numberOfLines={2} <ProfileCard.DescriptionPlaceholder numberOfLines={2} />
style={[a.align_center, a.flex, a.self_stretch]} </View>
/>
</View> </View>
</CardOuter> </CardOuter>
) )