diff --git a/packages/nodes-base/nodes/Pushcut/GenericFunctions.ts b/packages/nodes-base/nodes/Pushcut/GenericFunctions.ts index 0bbbc05e30..269df83578 100644 --- a/packages/nodes-base/nodes/Pushcut/GenericFunctions.ts +++ b/packages/nodes-base/nodes/Pushcut/GenericFunctions.ts @@ -42,7 +42,7 @@ export async function pushcutApiRequest(this: IExecuteFunctions | ILoadOptionsFu // Try to return the error prettier throw new Error( - `Pushcut error response [${error.statusCode}]: ${message}` + `Pushcut error response [${error.statusCode}]: ${message}`, ); } throw error; diff --git a/packages/nodes-base/nodes/Pushcut/Pushcut.node.ts b/packages/nodes-base/nodes/Pushcut/Pushcut.node.ts index 626d788954..28fb18cb97 100644 --- a/packages/nodes-base/nodes/Pushcut/Pushcut.node.ts +++ b/packages/nodes-base/nodes/Pushcut/Pushcut.node.ts @@ -48,7 +48,7 @@ export class Pushcut implements INodeType { }, ], default: 'notification', - description: 'The resource to operate on.' + description: 'The resource to operate on.', }, { displayName: 'Operation', @@ -69,7 +69,7 @@ export class Pushcut implements INodeType { }, ], default: 'send', - description: 'The resource to operate on.' + description: 'The resource to operate on.', }, { displayName: 'Notification Name', diff --git a/packages/nodes-base/nodes/Pushcut/PushcutTrigger.node.ts b/packages/nodes-base/nodes/Pushcut/PushcutTrigger.node.ts index 694a2b0db2..024ca035d9 100644 --- a/packages/nodes-base/nodes/Pushcut/PushcutTrigger.node.ts +++ b/packages/nodes-base/nodes/Pushcut/PushcutTrigger.node.ts @@ -84,7 +84,7 @@ export class PushcutTrigger implements INodeType { const body = { actionName, - url: webhookUrl + url: webhookUrl, }; const responseData = await pushcutApiRequest.call(this, 'POST', endpoint, body); @@ -123,7 +123,7 @@ export class PushcutTrigger implements INodeType { return { workflowData: [ - this.helpers.returnJsonArray(body) + this.helpers.returnJsonArray(body), ], }; }