Prevent replies/reactions on messages with errors

This commit is contained in:
Ken Powers 2020-02-07 18:13:46 -05:00 committed by GitHub
parent f37e73c723
commit 101070bf42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 68 additions and 31 deletions

View file

@ -15,6 +15,7 @@ const book = storiesOf('Components/Conversation/Message', module);
const baseDataProps: Pick<
PropsData,
| 'id'
| 'canReply'
| 'conversationId'
| 'interactionMode'
| 'conversationType'
@ -23,6 +24,7 @@ const baseDataProps: Pick<
| 'authorPhoneNumber'
> = {
id: 'asdf',
canReply: true,
conversationId: 'asdf',
interactionMode: 'mouse',
conversationType: 'direct',