mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
fix(core): Remove linting exceptions in nodes-base, @typescript-eslint/no-unsafe-argument (no-changelog)
This commit is contained in:
@@ -294,7 +294,9 @@ export class GmailTrigger implements INodeType {
|
||||
}
|
||||
|
||||
if (simple) {
|
||||
responseData = this.helpers.returnJsonArray(await simplifyOutput.call(this, responseData));
|
||||
responseData = this.helpers.returnJsonArray(
|
||||
await simplifyOutput.call(this, responseData as IDataObject[]),
|
||||
);
|
||||
}
|
||||
} catch (error) {
|
||||
if (this.getMode() === 'manual' || !webhookData.lastTimeChecked) {
|
||||
|
||||
Reference in New Issue
Block a user