fix: update dialog box wording for draft confirmation (#351)

Marwan051 and drew created

* fix: update dialog box wording for draft confirmation

* fix: rename to "are you sure you want to exit?"

Signed-off-by: drew <me@andrinoff.com>

---------

Signed-off-by: drew <me@andrinoff.com>
Co-authored-by: drew <me@andrinoff.com>

Change summary

tui/composer.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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)"),
 			),
 		)