diff --git a/conda/js/src/components/toolchain/GraphicalEditor.jsx b/conda/js/src/components/toolchain/GraphicalEditor.jsx
index 58b3cf81b7d652a4a04738b3b0ee4778c860fc48..cd6b596f83f3a536a2c251d2549223ffa548b55e 100644
--- a/conda/js/src/components/toolchain/GraphicalEditor.jsx
+++ b/conda/js/src/components/toolchain/GraphicalEditor.jsx
@@ -99,7 +99,7 @@ export const blockWidth = 200;
 // spacing between grid rows/cols
 export const gridDistance = 20;
 // how much the scaling changes at once
-export const zoomAdjustmentAmount = 1000;
+export const zoomAdjustmentAmount = 100;
 // convert coords in the SVG element to coords to save in data
 export const convertWorldToDataCoords = (x: number, y: number) => {
 	return [x - svgWidthHalf, y - svgHeightHalf];