mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
👕 Fix lint issue
This commit is contained in:
parent
353b911620
commit
ce9951d877
|
@ -210,7 +210,7 @@ export class EmailSend implements INodeType {
|
||||||
// Send the email
|
// Send the email
|
||||||
const info = await transporter.sendMail(mailOptions);
|
const info = await transporter.sendMail(mailOptions);
|
||||||
|
|
||||||
returnData.push({ json: info });
|
returnData.push({ json: info as unknown as IDataObject });
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.prepareOutputData(returnData);
|
return this.prepareOutputData(returnData);
|
||||||
|
|
Loading…
Reference in a new issue