Skip to content

Commit

Permalink
Nits
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyhb committed Sep 22, 2024
1 parent 361574c commit e4f2785
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/workflow/src/engine.execution.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ test("execution", async () => {
kind: "multiply",
name: "Multiply some numbers",
handler: async (args) => {
console.log("yee", args);
return (args.workflowAction?.inputs?.a || 0) * (args.workflowAction?.inputs?.b || 0)
},
inputs: {
Expand Down
2 changes: 1 addition & 1 deletion packages/workflow/src/ui/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from '@xyflow/react';
import { Workflow, WorkflowAction } from "../types";
import { getLayoutedElements, parseWorkflow, useLayout } from './layout';
import { TriggerNode, ActionNode, BlankNode } from './Nodes';
import { TriggerNode, ActionNode, BlankNode } from './nodes';
import { useProvider, useSidebarPosition, useTrigger, useWorkflow } from './Provider';

export type EditorProps = {
Expand Down

0 comments on commit e4f2785

Please sign in to comment.