From 3c4d28f6a8c10f842d8ba5ce24bff01f7a08631e Mon Sep 17 00:00:00 2001 From: sven1103-agent <261423644+sven1103-agent@users.noreply.github.com> Date: Thu, 16 Apr 2026 19:49:23 +0200 Subject: [PATCH] fix: add trailing newline to SectionHeader separator --- internal/styles/styles.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/styles/styles.go b/internal/styles/styles.go index b00d1e7..a074ece 100644 --- a/internal/styles/styles.go +++ b/internal/styles/styles.go @@ -238,9 +238,9 @@ func SectionHeader(title string) string { // Make header more prominent with accent color and bold header := lipgloss.Style{}.Foreground(promptColor).Bold(true).Render(titleWithColon) separator := MutedStyle.Render(strings.Repeat(sep, 36)) - return header + "\n" + separator + return header + "\n" + separator + "\n" } - return titleWithColon + "\n" + strings.Repeat(sep, 36) + return titleWithColon + "\n" + strings.Repeat(sep, 36) + "\n" } // Highlight outputs highlighted/important text