We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53f07d3 commit 0ce2b29Copy full SHA for 0ce2b29
src/components/flow/FlowCanvas.tsx
@@ -42,14 +42,14 @@ export function FlowCanvas({ onDeploy }: FlowCanvasProps) {
42
updateNodeLabel(id, newLabel);
43
};
44
45
- const handleDeploy = () => {
46
- if (onDeploy) {
47
- onDeploy(nodes, edges);
48
- } else {
49
- console.log('DEPLOY:', { nodes, edges });
50
- alert('Model data printed to console!\n(Next step: send to Vitruvius backend)');
51
- }
52
- };
+ // const handleDeploy = () => {
+ // if (onDeploy) {
+ // onDeploy(nodes, edges);
+ // } else {
+ // console.log('DEPLOY:', { nodes, edges });
+ // alert('Model data printed to console!\n(Next step: send to Vitruvius backend)');
+ // }
+ // };
53
54
return (
55
<div
0 commit comments