Skip to content

Commit

Permalink
fix: issue with the engage tag (#5033)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daarii committed Feb 28, 2024
1 parent 34b238a commit e97e4d4
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -302,7 +302,12 @@ class Row extends React.Component<Props> {

{isEnabled('tags') && (
<td>
<Tags tags={message.customerTags || []} />
<Tags
tags={[
...(message.customerTags || []),
...(message.getTags || []),
]}
/>
</td>
)}

Expand Down

0 comments on commit e97e4d4

Please sign in to comment.