Render replies to 1:1 text stories
This commit is contained in:
parent
7b1b1584f1
commit
78e3120d1a
5 changed files with 47 additions and 22 deletions
|
@ -36,6 +36,7 @@ import { useConversationsActions } from '../ducks/conversations';
|
|||
import { useRecentEmojis } from '../selectors/emojis';
|
||||
import { useActions as useItemsActions } from '../ducks/items';
|
||||
import { useAudioPlayerActions } from '../ducks/audioPlayer';
|
||||
import { useGlobalModalActions } from '../ducks/globalModals';
|
||||
import { useStoriesActions } from '../ducks/stories';
|
||||
import { useIsWindowActive } from '../../hooks/useIsWindowActive';
|
||||
|
||||
|
@ -50,6 +51,7 @@ export function SmartStoryViewer(): JSX.Element | null {
|
|||
} = useConversationsActions();
|
||||
const { onSetSkinTone } = useItemsActions();
|
||||
const { showToast } = useToastActions();
|
||||
const { showContactModal } = useGlobalModalActions();
|
||||
|
||||
const isWindowActive = useIsWindowActive();
|
||||
|
||||
|
@ -143,6 +145,7 @@ export function SmartStoryViewer(): JSX.Element | null {
|
|||
renderEmojiPicker={renderEmojiPicker}
|
||||
replyState={replyState}
|
||||
retryMessageSend={retryMessageSend}
|
||||
showContactModal={showContactModal}
|
||||
showToast={showToast}
|
||||
skinTone={skinTone}
|
||||
story={storyView}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue