Skip to content

Commit 14715c6

Browse files
committed
Fix from not an array
1 parent f86289e commit 14715c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/TeamService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ async function sendEmail (currentUser, data) {
327327
cc: _.uniq([...dataCC, ...templateCC])
328328
};
329329
let emailStringProps = {
330-
from: (emailProps.from).join(','),
330+
from: emailProps.from,
331331
recipients: (emailProps.recipients).join(','),
332332
cc: (emailProps.cc).join(',')
333333
};

0 commit comments

Comments
 (0)