fix(cli): revert download arrow to clean up UI

👾 Generated with [Letta Code](https://letta.com)

Co-Authored-By: Letta <noreply@letta.com>
This commit is contained in:
cpacker
2026-01-31 20:31:04 -08:00
parent b6c78dd134
commit a3ba87212c

View File

@@ -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]);