Skip to content

Commit

Permalink
Restore reply button on stories
Browse files Browse the repository at this point in the history
Co-authored-by: Josh Perez <60019601+josh-signal@users.noreply.github.com>
  • Loading branch information
automated-signal and josh-signal committed Nov 19, 2022
1 parent 6dd98c3 commit b4bc5cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ts/components/StoryViewer.tsx
Expand Up @@ -818,7 +818,8 @@ export const StoryViewer = ({
{i18n('StoryViewer__sending')}
</div>
)}
{sendStatus === ResolvedSendStatus.Sent && (canReply || isSent) && (
{(canReply ||
(isSent && sendStatus === ResolvedSendStatus.Sent)) && (
<button
className="StoryViewer__reply"
onClick={() =>
Expand Down

0 comments on commit b4bc5cb

Please sign in to comment.