From a0fcc6955d409700ab33992c3c933429b4991a56 Mon Sep 17 00:00:00 2001 From: Jonathan Bennetts Date: Thu, 19 Sep 2024 09:07:51 +0100 Subject: [PATCH] lint fix --- .../nodes-base/credentials/BrandfetchApi.credentials.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/nodes-base/credentials/BrandfetchApi.credentials.ts b/packages/nodes-base/credentials/BrandfetchApi.credentials.ts index 43876ae880..263cd4a114 100644 --- a/packages/nodes-base/credentials/BrandfetchApi.credentials.ts +++ b/packages/nodes-base/credentials/BrandfetchApi.credentials.ts @@ -1,4 +1,9 @@ -import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow'; +import type { + IAuthenticateGeneric, + ICredentialTestRequest, + ICredentialType, + INodeProperties, +} from 'n8n-workflow'; export class BrandfetchApi implements ICredentialType { name = 'brandfetchApi'; @@ -21,7 +26,7 @@ export class BrandfetchApi implements ICredentialType { type: 'generic', properties: { headers: { - 'Authorization': '=Bearer {{$credentials.apiKey}}', + Authorization: '=Bearer {{$credentials.apiKey}}', }, }, };