From 91c696dbfcc71a9035f4320e24b6cf6bc043f4aa Mon Sep 17 00:00:00 2001 From: patriceckhart Date: Fri, 22 May 2026 19:21:27 +0200 Subject: [PATCH] Fix update banner formatting --- internal/agent/modes/update_banner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/agent/modes/update_banner.go b/internal/agent/modes/update_banner.go index 62b2c34..7af2f35 100644 --- a/internal/agent/modes/update_banner.go +++ b/internal/agent/modes/update_banner.go @@ -34,7 +34,7 @@ func renderUpdateBanner(th tui.Theme, info UpdateInfo, width int) []string { title := fmt.Sprintf("zot %s is available (you're on %s).", info.Latest, info.Current) out = append(out, " "+th.FG256(color, tui.Bold(title))) -out = append(out, "") + out = append(out, "") out = append(out, " "+th.FG256(th.Muted, "run: ")+th.FG256(color, "zot update")) if info.URL != "" {