From caa90cdbcadbee1495f0b6f035c1bbac5346a0ff Mon Sep 17 00:00:00 2001 From: Marwan051 <115355087+Marwan051@users.noreply.github.com> Date: Sun, 22 Mar 2026 16:31:21 +0200 Subject: [PATCH] fix: update dialog box wording for draft confirmation (#351) * fix: update dialog box wording for draft confirmation * fix: rename to "are you sure you want to exit?" Signed-off-by: drew --------- Signed-off-by: drew Co-authored-by: drew --- tui/composer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/composer.go b/tui/composer.go index af209413c86524164ba6dc751df52b94f6c2e80d..d7b4fd6e5c670e043cda8b0757afb6ff47a43df2 100644 --- a/tui/composer.go +++ b/tui/composer.go @@ -629,7 +629,7 @@ func (m *Composer) View() tea.View { if m.confirmingExit { dialog := DialogBoxStyle.Render( lipgloss.JoinVertical(lipgloss.Center, - "Discard draft?", + "Are you sure you want to exit? This draft will be saved", HelpStyle.Render("\n(y/n)"), ), )