diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-28 16:56:00 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | ab5be5cb3fe92ca2fb0b5013fbe72136054ddb91 (patch) | |
tree | 5e381d07590f7ffe70e5ab06b9216aeea92c36ad /src | |
parent | 22db8ed63978a7f96dae8c712603fd5a5359e3f2 (diff) | |
download | voidsky-ab5be5cb3fe92ca2fb0b5013fbe72136054ddb91.tar.zst |
refactor(feed): wrap placeholder description placeholder in full-width view
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> ) |