Skip to content

Commit

Permalink
fix: remove additional default value
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed Aug 21, 2024
1 parent 3d41e82 commit a5e6bc0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/editor-ui/src/composables/useCanvasOperations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1418,9 +1418,7 @@ export function useCanvasOperations({ router }: { router: ReturnType<typeof useR
// Add the nodes with the changed node names, expressions and connections
historyStore.startRecordingUndo();

await addNodes(Object.values(tempWorkflow.nodes), {
telemetry: false,
});
await addNodes(Object.values(tempWorkflow.nodes));
addConnections(
mapLegacyConnectionsToCanvasConnections(
tempWorkflow.connectionsBySourceNode,
Expand Down

0 comments on commit a5e6bc0

Please sign in to comment.