From fa2fd5eef3a69bebb2fe53ab9efb3a13ff8a95da Mon Sep 17 00:00:00 2001 From: Josh Perez <60019601+josh-signal@users.noreply.github.com> Date: Sat, 19 Nov 2022 03:09:03 -0500 Subject: [PATCH] Restore reply button on stories --- ts/components/StoryViewer.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ts/components/StoryViewer.tsx b/ts/components/StoryViewer.tsx index 3e30750ec3b..cc02e6f3deb 100644 --- a/ts/components/StoryViewer.tsx +++ b/ts/components/StoryViewer.tsx @@ -818,7 +818,8 @@ export function StoryViewer({ {i18n('StoryViewer__sending')} )} - {sendStatus === ResolvedSendStatus.Sent && (canReply || isSent) && ( + {(canReply || + (isSent && sendStatus === ResolvedSendStatus.Sent)) && (