about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCaidan Williams <caidan@internet.dev>2025-07-24 18:40:54 -0700
committerCaidan Williams <caidan@internet.dev>2025-07-29 17:37:01 -0700
commit3c89552e924fa5380ecbe0fcdce96c2282feb875 (patch)
tree6c84ac5ffa951aff15dbeb1a14362d965d9c8916
parentc93c36f6e51edb150cb7d27025a9c70c38d120b0 (diff)
downloadvoidsky-3c89552e924fa5380ecbe0fcdce96c2282feb875.tar.zst
refactor(ui): replace ProfileCard.Header with custom View
-rw-r--r--src/components/FeedInterstitials.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx
index 47bf228db..7318c5c5d 100644
--- a/src/components/FeedInterstitials.tsx
+++ b/src/components/FeedInterstitials.tsx
@@ -288,7 +288,7 @@ export function ProfileGrid({
                 {width: 165},
               ]}>
               <ProfileCard.Outer>
-                <ProfileCard.Header>
+                <View style={[a.flex_col, a.align_center, a.gap_sm, a.pb_sm]}>
                   <ProfileCard.Avatar
                     profile={profile}
                     moderationOpts={moderationOpts}
@@ -315,8 +315,8 @@ export function ProfileGrid({
                       })
                     }}
                   />
-                </ProfileCard.Header>
                 <ProfileCard.Description profile={profile} numberOfLines={2} />
+                </View>
               </ProfileCard.Outer>
             </CardOuter>
           )}