diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-28 17:38:58 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | 8dc074c47798f69d886ed6eec7b8cb01171aced8 (patch) | |
tree | e8f4d7232c7efc71089e0fd2250c3c4a3bf640e2 /src/components/FeedInterstitials.tsx | |
parent | da47cd0d1b8aac5a19c753a08fdcdf2006cd7eec (diff) | |
download | voidsky-8dc074c47798f69d886ed6eec7b8cb01171aced8.tar.zst |
fix(ui): profile name and description overflowing on web
Diffstat (limited to 'src/components/FeedInterstitials.tsx')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 6cb10a523..1566db1bf 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -313,7 +313,7 @@ export function ProfileGrid({ moderationOpts={moderationOpts} size={88} /> - <View style={[a.flex_col, a.align_center]}> + <View style={[a.flex_col, a.align_center, a.max_w_full]}> <ProfileCard.Name profile={profile} moderationOpts={moderationOpts} |