소스 검색

fix: logo

adamdottv 1 년 전
부모
커밋
d1be7a984e
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      internal/tui/components/chat/chat.go

+ 1 - 2
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)
 }
-