mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(core): Remove linting exceptions in nodes-base, @typescript-eslint/no-unsafe-argument (no-changelog)
This commit is contained in:
@@ -130,7 +130,7 @@ export class DeepL implements INodeType {
|
||||
|
||||
const { translations } = await deepLApiRequest.call(this, 'GET', '/translate', body);
|
||||
const [translation] = translations;
|
||||
const translationJsonArray = this.helpers.returnJsonArray(translation);
|
||||
const translationJsonArray = this.helpers.returnJsonArray(translation as IDataObject[]);
|
||||
const executionData = this.helpers.constructExecutionMetaData(translationJsonArray, {
|
||||
itemData: { item: i },
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user