chore: remove extra gap between model icon and name after messages

Christian Rocha created

Change summary

internal/tui/components/chat/messages/messages.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

internal/tui/components/chat/messages/messages.go 🔗

@@ -291,7 +291,7 @@ func (m *assistantSectionModel) View() tea.View {
 	infoMsg := t.S().Subtle.Render(duration.String())
 	icon := t.S().Subtle.Render(styles.ModelIcon)
 	model := t.S().Muted.Render(models.SupportedModels[m.message.Model].Name)
-	assistant := fmt.Sprintf("%s  %s %s", icon, model, infoMsg)
+	assistant := fmt.Sprintf("%s %s %s", icon, model, infoMsg)
 	return tea.NewView(
 		t.S().Base.PaddingLeft(2).Render(
 			core.Section(assistant, m.width-2),