Browse Source

fix: logo

adamdottv 10 months ago
parent
commit
8819a37a05
2 changed files with 2 additions and 2 deletions
  1. 1 1
      internal/tui/components/chat/chat.go
  2. 1 1
      internal/tui/styles/icons.go

+ 1 - 1
internal/tui/components/chat/chat.go

@@ -96,7 +96,7 @@ func lspsConfigured(width int) string {
 }
 }
 
 
 func logo(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()
 	t := theme.CurrentTheme()
 	baseStyle := styles.BaseStyle()
 	baseStyle := styles.BaseStyle()
 
 

+ 1 - 1
internal/tui/styles/icons.go

@@ -1,7 +1,7 @@
 package styles
 package styles
 
 
 const (
 const (
-	OpenCodeIcon string = ""
+	OpenCodeIcon string = ""
 
 
 	ErrorIcon   string = "ⓧ"
 	ErrorIcon   string = "ⓧ"
 	WarningIcon string = "ⓦ"
 	WarningIcon string = "ⓦ"