Skip to content

Commit 2c0f847

Browse files
refactor: added missing key
1 parent 8b35745 commit 2c0f847

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoDetails/ContactInfoPhoneEntry.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const ContactInfoPhoneEntry = ({ contactId, value, ...props }: ContactInfoPhoneE
2525
value={parseOutboundPhoneNumber(value)}
2626
actions={[
2727
<IconButton key={`${value}-copy`} onClick={() => copy()} tiny icon='copy' title={t('Copy')} />,
28-
isCallReady ? <ContactInfoCallButton phoneNumber={value} /> : null,
28+
isCallReady ? <ContactInfoCallButton key={`${value}-call`} phoneNumber={value} /> : null,
2929
<ContactInfoOutboundMessageButton key={`${value}-outbound-message`} defaultValues={{ contactId, recipient: value }} />,
3030
]}
3131
/>

0 commit comments

Comments
 (0)