diff options
author | dan <dan.abramov@gmail.com> | 2024-02-09 02:20:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 02:20:34 +0000 |
commit | 0d00c7d8516d2e4b736f5a2eaa679dbcce2cb71c (patch) | |
tree | a9fbee628394679eb325b8b5b78015ff32a7cac4 | |
parent | de28626001a3685753b0b4ca33b0a16c66ecf204 (diff) | |
download | voidsky-0d00c7d8516d2e4b736f5a2eaa679dbcce2cb71c.tar.zst |
Show text cursor on web bio (#2813)
-rw-r--r-- | src/view/com/profile/ProfileHeader.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index 1f5a76cf8..2e80ca808 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -673,7 +673,7 @@ let ProfileHeaderLoaded = ({ </Text> </View> {descriptionRT && !moderation.profile.blur ? ( - <View pointerEvents={isNative ? 'auto' : 'none'}> + <View pointerEvents="auto"> <RichText testID="profileHeaderDescription" style={[styles.description, pal.text]} |