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/ProfileCard.tsx | |
parent | da47cd0d1b8aac5a19c753a08fdcdf2006cd7eec (diff) | |
download | voidsky-8dc074c47798f69d886ed6eec7b8cb01171aced8.tar.zst |
fix(ui): profile name and description overflowing on web
Diffstat (limited to 'src/components/ProfileCard.tsx')
-rw-r--r-- | src/components/ProfileCard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
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={[ |