From bd2efed080fffe52b4f2b38768fedd6665501471 Mon Sep 17 00:00:00 2001 From: chernistry <73943355+chernistry@users.noreply.github.com> Date: Thu, 16 Apr 2026 00:25:07 +0300 Subject: [PATCH] fix(frontend): allow zooming out more in the builder (#12690) Reduced minZoom on the builder canvas from 0.1 to 0.05 to allow zooming out further when working with large agent graphs. Fixes #9325 Co-authored-by: Nicholas Tindle --- .../app/(platform)/build/components/FlowEditor/Flow/Flow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/Flow.tsx b/autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/Flow.tsx index 3a55fabf1d..186c8d96fe 100644 --- a/autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/Flow.tsx +++ b/autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/Flow.tsx @@ -110,7 +110,7 @@ export const Flow = () => { event.preventDefault(); }} maxZoom={2} - minZoom={0.1} + minZoom={0.05} onDragOver={onDragOver} onDrop={onDrop} nodesDraggable={!isLocked}