diff --git a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue index f6474d9cd..c96afedd6 100644 --- a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue +++ b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue @@ -1052,7 +1052,7 @@ export default { // Retrieve the email of the current conversation's sender const conversationContact = this.currentChat?.meta?.sender?.email || ''; - let cc = [...emailAttributes.cc] || []; + let cc = emailAttributes.cc ? [...emailAttributes.cc] : []; let to = []; // there might be a situation where the current conversation will include a message from a third person,