From b9d38a8e0ad1d81fb7ca347547b49deec294117a Mon Sep 17 00:00:00 2001 From: Brandon McAnsh Date: Mon, 27 Jul 2026 17:02:11 -0400 Subject: [PATCH] chore(chat): update received tip summary string to be "You received" instead of "Someone tipped..." Signed-off-by: Brandon McAnsh --- .../kotlin/com/flipcash/shared/chat/ui/ChatSummaryMapping.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/flipcash/shared/chat-ui/src/main/kotlin/com/flipcash/shared/chat/ui/ChatSummaryMapping.kt b/apps/flipcash/shared/chat-ui/src/main/kotlin/com/flipcash/shared/chat/ui/ChatSummaryMapping.kt index 57d2a0289..28833324a 100644 --- a/apps/flipcash/shared/chat-ui/src/main/kotlin/com/flipcash/shared/chat/ui/ChatSummaryMapping.kt +++ b/apps/flipcash/shared/chat-ui/src/main/kotlin/com/flipcash/shared/chat/ui/ChatSummaryMapping.kt @@ -61,7 +61,7 @@ private fun ChatSummary.formatPreview( } val previewRes = when (content.action) { MessageContent.Cash.Action.TIPPED -> - if (sentBySelf) R.string.label_chat_preview_tippedCash else R.string.label_chat_preview_receivedTip + if (sentBySelf) R.string.label_chat_preview_tippedCash else R.string.label_chat_preview_receivedCash MessageContent.Cash.Action.SENT -> if (sentBySelf) R.string.label_chat_preview_sentCash else R.string.label_chat_preview_receivedCash }