Render replies to 1:1 text stories

This commit is contained in:
Josh Perez 2023-03-07 17:59:44 -05:00 committed by GitHub
parent 7b1b1584f1
commit 78e3120d1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 47 additions and 22 deletions

View file

@ -105,6 +105,7 @@ export type PropsType = {
retryMessageSend: (messageId: string) => unknown;
saveAttachment: SaveAttachmentActionCreatorType;
setHasAllStoriesUnmuted: (isUnmuted: boolean) => unknown;
showContactModal: (contactId: string, conversationId?: string) => void;
showToast: ShowToastActionCreatorType;
skinTone?: number;
story: StoryViewType;
@ -158,6 +159,7 @@ export function StoryViewer({
retryMessageSend,
saveAttachment,
setHasAllStoriesUnmuted,
showContactModal,
showToast,
skinTone,
story,
@ -948,6 +950,7 @@ export function StoryViewer({
recentEmojis={recentEmojis}
renderEmojiPicker={renderEmojiPicker}
replies={replies}
showContactModal={showContactModal}
skinTone={skinTone}
sortedGroupMembers={group?.sortedGroupMembers}
views={views}