fix(tui): remove leading newline from bordered sidebar

This commit is contained in:
2026-06-20 19:24:14 -04:00
parent 08f14f3af8
commit 065d5d74bb
+1 -1
View File
@@ -74,5 +74,5 @@ func (m Model) viewLogsSidebar(width, maxLines int) string {
} }
} }
return "\n" + sidebarStyle.Render(strings.Join(lines, "\n")) return sidebarStyle.Render(strings.Join(lines, "\n"))
} }