diff options
| author | adamdottv <[email protected]> | 2025-05-01 06:36:30 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-01 06:36:30 -0500 |
| commit | d1be7a984e5e761cd96f7885b4d5f6e985ee00ce (patch) | |
| tree | 8f43d611cc7974b3f43de85146378e27b8c929fb | |
| parent | 3e30607a6d321bf46feb2f437fe232b73751955b (diff) | |
| download | opencode-d1be7a984e5e761cd96f7885b4d5f6e985ee00ce.tar.gz opencode-d1be7a984e5e761cd96f7885b4d5f6e985ee00ce.zip | |
fix: logo
| -rw-r--r-- | internal/tui/components/chat/chat.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/tui/components/chat/chat.go b/internal/tui/components/chat/chat.go index ca094ca7c..06012dc8d 100644 --- a/internal/tui/components/chat/chat.go +++ b/internal/tui/components/chat/chat.go @@ -96,7 +96,7 @@ func lspsConfigured(width int) string { } func logo(width int) string { - logo := fmt.Sprintf("%s %s", styles.OpenCodeIcon, "OpenCode") + logo := fmt.Sprintf("%s%s", styles.OpenCodeIcon, "OpenCode") t := theme.CurrentTheme() baseStyle := styles.BaseStyle() @@ -136,4 +136,3 @@ func cwd(width int) string { Width(width). Render(cwd) } - |
