From 02df1e97370b8d77ed07e264a4a8dfaa7de08af4 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" <219766164+opencode-agent[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 20:28:55 -0400 Subject: [PATCH] refactor(tui): reuse canonical logo (#39951) Co-authored-by: Kit Langton --- packages/tui/src/logo.ts | 2 -- packages/tui/src/util/presentation.ts | 5 +---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/tui/src/logo.ts b/packages/tui/src/logo.ts index a58a8cf995..8c570fb934 100644 --- a/packages/tui/src/logo.ts +++ b/packages/tui/src/logo.ts @@ -7,5 +7,3 @@ export const go = { left: [" ", "█▀▀▀", "█_^█", "▀▀▀▀"], right: [" ", "█▀▀█", "█__█", "▀▀▀▀"], } - -export const marks = "_^~," diff --git a/packages/tui/src/util/presentation.ts b/packages/tui/src/util/presentation.ts index 8cfca3644e..6a532398bf 100644 --- a/packages/tui/src/util/presentation.ts +++ b/packages/tui/src/util/presentation.ts @@ -1,7 +1,4 @@ -const logo = { - left: [" ", "█▀▀█ █▀▀█ █▀▀█ █▀▀▄", "█__█ █__█ █^^^ █__█", "▀▀▀▀ █▀▀▀ ▀▀▀▀ ▀~~▀"], - right: [" ▄ ", "█▀▀▀ █▀▀█ █▀▀█ █▀▀█", "█___ █__█ █__█ █^^^", "▀▀▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀▀▀"], -} +import { logo } from "../logo" const reset = "\x1b[0m" const bold = "\x1b[1m"