Skip to content

Commit

Permalink
fix: update for new api
Browse files Browse the repository at this point in the history
  • Loading branch information
gwynndp committed Mar 17, 2022
1 parent ad51e1d commit e3ca3ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Messaging/MessageBody.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,9 +390,9 @@ const SenderInformation = ({
{message?.bulk_message_recipients &&
message?.bulk_message_recipients.map((recipient) => (
<Chip
key={recipient.recipient}
label={`${recipient.recipient}`}
color={recipient.type === 'region' ? 'secondary' : 'primary'}
key={recipient.organization || recipient.region}
label={`${recipient.organization || recipient.region}`}
color="primary"
style={{
color: 'white',
borderRadius: '6px',
Expand Down

0 comments on commit e3ca3ff

Please sign in to comment.