From 5efd982a48e03805ae0aa3786fa1d50e3309626d Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Mon, 24 Jun 2024 15:19:17 -0500 Subject: [PATCH] Enable forwarding of shared contacts Co-authored-by: Scott Nonnenberg --- ts/components/conversation/TimelineMessage.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ts/components/conversation/TimelineMessage.tsx b/ts/components/conversation/TimelineMessage.tsx index dc148d382..e2364f0a4 100644 --- a/ts/components/conversation/TimelineMessage.tsx +++ b/ts/components/conversation/TimelineMessage.tsx @@ -100,7 +100,6 @@ export function TimelineMessage(props: Props): JSX.Element { canReply, canRetry, canRetryDeleteForEveryone, - contact, containerElementRef, containerWidthBreakpoint, conversationId, @@ -233,7 +232,7 @@ export function TimelineMessage(props: Props): JSX.Element { const handleContextMenu = useHandleMessageContextMenu(menuTriggerRef); const canForward = - !isTapToView && !deletedForEveryone && !giftBadge && !contact && !payment; + !isTapToView && !deletedForEveryone && !giftBadge && !payment; const shouldShowAdditional = doesMessageBodyOverflow(text || '') || !isWindowWidthNotNarrow;