From a3ba87212c78f6934cce491d4e153a8a5d164da5 Mon Sep 17 00:00:00 2001 From: cpacker Date: Sat, 31 Jan 2026 20:31:04 -0800 Subject: [PATCH] fix(cli): revert download arrow to clean up UI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 👾 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta --- src/cli/components/InputRich.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/components/InputRich.tsx b/src/cli/components/InputRich.tsx index e7a2e33..dfccbf0 100644 --- a/src/cli/components/InputRich.tsx +++ b/src/cli/components/InputRich.tsx @@ -843,7 +843,7 @@ export function Input({ const networkArrow = useMemo(() => { if (!networkPhase) return ""; if (networkPhase === "upload") return "↑"; - if (networkPhase === "download") return "↓"; + if (networkPhase === "download") return "↑"; // Use ↑ for both to avoid distracting flip (change to ↓ to restore) return "↑\u0338"; }, [networkPhase]);