diff --git a/apps/builder/src/features/graph/components/Graph.tsx b/apps/builder/src/features/graph/components/Graph.tsx index 43402a346..7cf7fc398 100644 --- a/apps/builder/src/features/graph/components/Graph.tsx +++ b/apps/builder/src/features/graph/components/Graph.tsx @@ -225,7 +225,7 @@ export const Graph = ({ setGraphPosition({ ...graphPosition, - x: graphPosition.x - dx, + x: shiftKey ? graphPosition.x - dy : graphPosition.x - dx, y: shiftKey ? graphPosition.y : graphPosition.y - dy, }) },