Browse Source

ignore: remove log

Dax Raad 7 months ago
parent
commit
93446df335
1 changed files with 0 additions and 1 deletions
  1. 0 1
      packages/tui/internal/components/chat/messages.go

+ 0 - 1
packages/tui/internal/components/chat/messages.go

@@ -73,7 +73,6 @@ func (s selection) coords(offset int) selection {
 
 	// selecting backwards same line
 	if s.startY == s.endY && s.startX >= s.endX {
-		slog.Info("selecting backwards same line", "start", s.startX, "end", s.endX)
 		return selection{
 			startY: s.startY - offset,
 			startX: max(0, s.endX-1),