mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -4,9 +4,6 @@ import {
|
|||||||
INodeExecutionData,
|
INodeExecutionData,
|
||||||
INodeType,
|
INodeType,
|
||||||
INodeTypeDescription,
|
INodeTypeDescription,
|
||||||
JsonObject,
|
|
||||||
NodeApiError,
|
|
||||||
NodeOperationError,
|
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
|
||||||
@@ -135,7 +132,7 @@ export class Discord implements INodeType {
|
|||||||
if (!webhookUri) throw Error('Webhook uri is required.');
|
if (!webhookUri) throw Error('Webhook uri is required.');
|
||||||
|
|
||||||
const items = this.getInputData();
|
const items = this.getInputData();
|
||||||
const length = items.length as number
|
const length = items.length as number;
|
||||||
for (let i = 0; i < length; i++) {
|
for (let i = 0; i < length; i++) {
|
||||||
const body: DiscordWebhook = {};
|
const body: DiscordWebhook = {};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user