1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-07 10:07:19 +03:00

👕 Fix lint issue

This commit is contained in:
Jan Oberhauser 2022-04-15 10:40:05 +02:00
parent 6ca7454078
commit 7fc8c53f8a

View File

@ -4,9 +4,6 @@ import {
INodeExecutionData,
INodeType,
INodeTypeDescription,
JsonObject,
NodeApiError,
NodeOperationError,
} from 'n8n-workflow';
@ -135,7 +132,7 @@ export class Discord implements INodeType {
if (!webhookUri) throw Error('Webhook uri is required.');
const items = this.getInputData();
const length = items.length as number
const length = items.length as number;
for (let i = 0; i < length; i++) {
const body: DiscordWebhook = {};