mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(core): Remove linting exceptions in nodes-base, @typescript-eslint/no-unsafe-argument (no-changelog)
This commit is contained in:
@@ -244,7 +244,10 @@ export class CustomerIoTrigger implements INodeType {
|
||||
}
|
||||
|
||||
for (const webhook of webhooks) {
|
||||
if (webhook.endpoint === webhookUrl && eventExists(currentEvents, webhook.events)) {
|
||||
if (
|
||||
webhook.endpoint === webhookUrl &&
|
||||
eventExists(currentEvents, webhook.events as IDataObject)
|
||||
) {
|
||||
webhookData.webhookId = webhook.id;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user