Skip to content

Commit f86289e

Browse files
committed
fix
1 parent 03f5bf5 commit f86289e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/services/TeamService.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,9 @@ async function sendEmail (currentUser, data) {
327327
cc: _.uniq([...dataCC, ...templateCC])
328328
};
329329
let emailStringProps = {
330-
from: emailProps.from.join(','),
331-
recipients: emailProps.recipients.join(','),
332-
cc: emailProps.cc.join(',')
330+
from: (emailProps.from).join(','),
331+
recipients: (emailProps.recipients).join(','),
332+
cc: (emailProps.cc).join(',')
333333
};
334334
let emailData = {
335335
data: { ...data.data, ...emailStringProps },

0 commit comments

Comments
 (0)