diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index d2d65eddc..48965ffb7 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -69,10 +69,9 @@ export function SuggestedFollowPlaceholder() { <View style={[a.flex_col, a.align_center, a.gap_sm]}> <ProfileCard.AvatarPlaceholder size={88} /> <ProfileCard.NamePlaceholder /> - <ProfileCard.DescriptionPlaceholder - numberOfLines={2} - style={[a.align_center, a.flex, a.self_stretch]} - /> + <View style={[a.w_full]}> + <ProfileCard.DescriptionPlaceholder numberOfLines={2} /> + </View> </View> </CardOuter> ) |