We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e92a009 commit f485fd6Copy full SHA for f485fd6
apps/sim/executor/index.ts
@@ -649,13 +649,8 @@ export class Executor {
649
if (this.workflowInput && typeof this.workflowInput === 'object') {
650
// Check if this is a chat workflow input (has both input and conversationId)
651
if (
652
-<<<<<<< HEAD
653
Object.hasOwn(this.workflowInput, 'input') &&
654
Object.hasOwn(this.workflowInput, 'conversationId')
655
-=======
656
- Object.prototype.hasOwnProperty.call(this.workflowInput, 'input') &&
657
- Object.prototype.hasOwnProperty.call(this.workflowInput, 'conversationId')
658
->>>>>>> 34b590a1 (merged improvement/connection into staging (#604))
659
) {
660
// Chat workflow: extract input and conversationId to root level
661
const starterOutput = {
0 commit comments