From 410f3cbba1ea5bba4bebe4b649c2879944e28eb8 Mon Sep 17 00:00:00 2001 From: vineyardbovines Date: Tue, 2 Jun 2026 12:33:13 -0400 Subject: [PATCH] Apply quote-context fix to single-image branch too --- src/components/Post/Embed/ImageEmbed.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/components/Post/Embed/ImageEmbed.tsx b/src/components/Post/Embed/ImageEmbed.tsx index 5dd1a48243..f67d4ec254 100644 --- a/src/components/Post/Embed/ImageEmbed.tsx +++ b/src/components/Post/Embed/ImageEmbed.tsx @@ -65,17 +65,14 @@ export function ImageEmbed({ crop={ rest.viewContext === PostEmbedViewContext.ThreadHighlighted ? 'none' - : rest.viewContext === - PostEmbedViewContext.FeedEmbedRecordWithMedia + : rest.isWithinQuote ? 'square' : 'constrained' } image={image} onPress={(containerRef, dims) => onPress(0, [containerRef], [dims])} onPressIn={() => onPressIn(0)} - hideBadge={ - rest.viewContext === PostEmbedViewContext.FeedEmbedRecordWithMedia - } + hideBadge={rest.isWithinQuote} /> )