Add ability to send poll votes

This commit is contained in:
yash-signal
2025-10-21 17:09:51 -05:00
committed by GitHub
parent 1ddb81e053
commit 77d8758e2c
22 changed files with 921 additions and 58 deletions

View File

@@ -98,6 +98,7 @@ export type PropsReduxActions = Pick<
| 'openGiftBadge'
| 'pushPanelForConversation'
| 'retryMessageSend'
| 'sendPollVote'
| 'saveAttachment'
| 'saveAttachments'
| 'showContactModal'
@@ -146,6 +147,7 @@ export function MessageDetail({
platform,
pushPanelForConversation,
retryMessageSend,
sendPollVote,
renderAudioAttachment,
saveAttachment,
saveAttachments,
@@ -354,6 +356,7 @@ export function MessageDetail({
platform={platform}
pushPanelForConversation={pushPanelForConversation}
retryMessageSend={retryMessageSend}
sendPollVote={sendPollVote}
renderAudioAttachment={renderAudioAttachment}
saveAttachment={saveAttachment}
saveAttachments={saveAttachments}