From 88211d8c5bfd7dfc33af70b2916d647b674c9e35 Mon Sep 17 00:00:00 2001 From: adamdottv <2363879+adamdottv@users.noreply.github.com> Date: Thu, 19 Jun 2025 16:03:39 -0500 Subject: [PATCH] fix(tui): upgrade notification --- packages/tui/internal/tui/tui.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/tui/internal/tui/tui.go b/packages/tui/internal/tui/tui.go index c18f00d6..b913e589 100644 --- a/packages/tui/internal/tui/tui.go +++ b/packages/tui/internal/tui/tui.go @@ -214,8 +214,8 @@ func (a appModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { a.completions.SetProvider(a.completionManager.DefaultProvider()) case client.EventInstallationUpdated: return a, toast.NewSuccessToast( - "New version installed", - toast.WithTitle("opencode updated to "+msg.Properties.Version+", restart to apply."), + "opencode updated to "+msg.Properties.Version+", restart to apply.", + toast.WithTitle("New version installed"), ) case client.EventSessionUpdated: if msg.Properties.Info.Id == a.app.Session.Id {