diff options
-rw-r--r-- | src/components/FeedInterstitials.tsx | 2 | ||||
-rw-r--r-- | src/components/ProfileCard.tsx | 2 |
2 files changed, 2 insertions, 2 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} diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index 65e20ba9a..f12d922fd 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -282,7 +282,7 @@ export function Name({ ) const verification = useSimpleVerificationState({profile}) return ( - <View style={[a.flex_row, a.align_center]}> + <View style={[a.flex_row, a.align_center, a.max_w_full]}> <Text emoji style={[ |