mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
👕 Fix lint issue
This commit is contained in:
parent
6ca7454078
commit
7fc8c53f8a
|
@ -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 = {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue