From da93da4191ddf6e23ba99808e8381a33032da8b3 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 13 Aug 2026 15:48:56 +0300 Subject: [PATCH] Fix display of link cards in DMs (#11458) --- src/components/Post/Embed/ExternalEmbed/index.tsx | 4 ++-- src/components/Post/Embed/StandardSiteEmbed/index.tsx | 5 ++--- src/components/Post/Embed/index.tsx | 6 +++++- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/components/Post/Embed/ExternalEmbed/index.tsx b/src/components/Post/Embed/ExternalEmbed/index.tsx index f920359477..4432eb6632 100644 --- a/src/components/Post/Embed/ExternalEmbed/index.tsx +++ b/src/components/Post/Embed/ExternalEmbed/index.tsx @@ -92,7 +92,7 @@ export const ExternalEmbed = ({ style={[a.rounded_md]} onPress={onPress} onLongPress={onShareExternal}> - {({hovered}) => ( + {({hovered, pressed}) => ( - {() => ( + {({pressed}) => ( {imageUri ? ( +