diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-10-31 21:51:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 21:51:58 +0000 |
commit | 3b68dfeb3bbc8a973b1b368989be965d41241f55 (patch) | |
tree | c6c5a7830c29609d8262448d0ea81bd2884e1432 /src/components | |
parent | d5f8d8224fd5ce18b1404ccc605136de8a9d156f (diff) | |
download | voidsky-3b68dfeb3bbc8a973b1b368989be965d41241f55.tar.zst |
allow emoji in link facets (#6039)
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/RichText.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/RichText.tsx b/src/components/RichText.tsx index 1c65a87ac..8f6358dd5 100644 --- a/src/components/RichText.tsx +++ b/src/components/RichText.tsx @@ -128,7 +128,8 @@ export function RichText({ // @ts-ignore TODO dataSet={WORD_WRAP} shareOnLongPress - onPress={onLinkPress}> + onPress={onLinkPress} + emoji> {toShortUrl(segment.text)} </InlineLinkText>, ) |