about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCaidan Williams <caidan@internet.dev>2025-07-28 16:56:00 -0700
committerCaidan Williams <caidan@internet.dev>2025-07-29 17:37:01 -0700
commitab5be5cb3fe92ca2fb0b5013fbe72136054ddb91 (patch)
tree5e381d07590f7ffe70e5ab06b9216aeea92c36ad
parent22db8ed63978a7f96dae8c712603fd5a5359e3f2 (diff)
downloadvoidsky-ab5be5cb3fe92ca2fb0b5013fbe72136054ddb91.tar.zst
refactor(feed): wrap placeholder description placeholder in full-width view
-rw-r--r--src/components/FeedInterstitials.tsx7
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>
   )