Support for incoming gift badges

This commit is contained in:
Scott Nonnenberg 2022-05-11 13:59:58 -07:00 committed by GitHub
parent 6b4bea6330
commit 0ba6a0926e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 1476 additions and 164 deletions

View file

@ -73,6 +73,7 @@ export type PropsBackboneActions = Pick<
| 'markAttachmentAsCorrupted'
| 'markViewed'
| 'openConversation'
| 'openGiftBadge'
| 'openLink'
| 'reactToMessage'
| 'renderAudioAttachment'
@ -284,6 +285,7 @@ export class MessageDetail extends React.Component<Props> {
markAttachmentAsCorrupted,
markViewed,
openConversation,
openGiftBadge,
openLink,
reactToMessage,
renderAudioAttachment,
@ -339,6 +341,7 @@ export class MessageDetail extends React.Component<Props> {
markViewed={markViewed}
messageExpanded={noop}
openConversation={openConversation}
openGiftBadge={openGiftBadge}
openLink={openLink}
reactToMessage={reactToMessage}
renderAudioAttachment={renderAudioAttachment}