Skip to content

Commit acb604b

Browse files
authored
Update Signal.node.ts
removed nodeconnectiontype import and changed the variables to 'main'. This caused errors due to changes in n8n
1 parent bd81991 commit acb604b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

nodes/Signal/Signal.node.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
INodeType,
55
INodeTypeDescription,
66
NodeOperationError,
7-
NodeConnectionType,
87
} from 'n8n-workflow';
98
import axios from 'axios';
109
import { v4 as uuidv4 } from 'uuid';
@@ -22,8 +21,8 @@ export class Signal implements INodeType {
2221
defaults: {
2322
name: 'Signal',
2423
},
25-
inputs: [NodeConnectionType.Main],
26-
outputs: [NodeConnectionType.Main],
24+
inputs: ['main'],
25+
outputs: ['main'],
2726
credentials: [
2827
{
2928
name: 'signalCliApi',

0 commit comments

Comments
 (0)