From 637c44714ef47d8a5c01c539774cda50efed69a0 Mon Sep 17 00:00:00 2001 From: Brandon McAnsh Date: Thu, 3 Sep 2026 14:15:37 -0400 Subject: [PATCH] fix(chat): title-case the delete confirmation The alert read "Delete message?" while its action read "Delete For Everyone", so the two lines of the same dialog disagreed on casing. --- Flipcash/Core/Screens/Conversation/ConversationScreen.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flipcash/Core/Screens/Conversation/ConversationScreen.swift b/Flipcash/Core/Screens/Conversation/ConversationScreen.swift index 10a4a4772..749efebcf 100644 --- a/Flipcash/Core/Screens/Conversation/ConversationScreen.swift +++ b/Flipcash/Core/Screens/Conversation/ConversationScreen.swift @@ -418,7 +418,7 @@ struct ConversationScreen: View { // WhatsApp's sheet offers "Delete for everyone" beside "Delete for me"; we have no // delete-for-me, so the one action we do have names its scope and stands alone. session.dialogItem = DialogItem.alert( - title: "Delete message?", + title: "Delete Message?", subtitle: "This can't be undone" ) { DialogAction.destructive("Delete For Everyone") {