From d099740f3362a191c097ccac49b9105a7afd1748 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 4 Jun 2026 16:12:14 -0400 Subject: [PATCH] fix(tui): remove extra blank lines above footer JoinVertical adds no gap lines between sections. The - 2 subtraction was over-reserving space, leaving 2 blank lines between content and footer. --- internal/tui/view_dashboard.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/view_dashboard.go b/internal/tui/view_dashboard.go index f3e4e78..5fa9a2b 100644 --- a/internal/tui/view_dashboard.go +++ b/internal/tui/view_dashboard.go @@ -181,7 +181,7 @@ func (m Model) viewDashboard() string { availHeight = 5 } - contentHeight := availHeight - lipgloss.Height(header) - lipgloss.Height(footer) - 2 + contentHeight := availHeight - lipgloss.Height(header) - lipgloss.Height(footer) if contentHeight < 1 { contentHeight = 1 }