Skip to content

Commit

Permalink
debug: allow cc to be undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasduteil committed Dec 20, 2023
1 parent 5ed68a7 commit 838261f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connectors/sendinblue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const sendMail = async ({
senderEmail?: string;
}) => {
const data = {
cc: [] as { email: string }[],
cc: undefined as { email: string }[] | undefined,
sender: {
name: "L’équipe MonComptePro",
email: senderEmail,
Expand Down

0 comments on commit 838261f

Please sign in to comment.