diff options
author | Ansh <anshnanda10@gmail.com> | 2023-09-13 23:42:58 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-13 11:12:58 -0700 |
commit | b9268d503a8d074504ba7ed5e28548b7130e091a (patch) | |
tree | 08f9bfd830b2b05542838441d5e10a7fe493395e /src | |
parent | 9c72fcc9b49c9d8dc20da2bc381ae6daf078bff6 (diff) | |
download | voidsky-b9268d503a8d074504ba7ed5e28548b7130e091a.tar.zst |
wrap impersonation text (#1447)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/moderation/PostAlerts.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/view/com/util/moderation/PostAlerts.tsx b/src/view/com/util/moderation/PostAlerts.tsx index 604b80988..0dba367fc 100644 --- a/src/view/com/util/moderation/PostAlerts.tsx +++ b/src/view/com/util/moderation/PostAlerts.tsx @@ -38,11 +38,11 @@ export function PostAlerts({ accessibilityHint="" style={[styles.container, pal.viewLight, style]}> <ShieldExclamation style={pal.text} size={16} /> - <Text type="lg" style={pal.text}> - {desc.name} - </Text> - <Text type="lg" style={[pal.link, styles.learnMoreBtn]}> - Learn More + <Text type="lg" style={[pal.text]}> + {desc.name}{' '} + <Text type="lg" style={[pal.link, styles.learnMoreBtn]}> + Learn More + </Text> </Text> </Pressable> ) |