Skip to content

Commit 8613435

Browse files
committed
chore(chat): update failed to send label and color
use errorText Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 2382e7a commit 8613435

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • apps/flipcash
    • core/src/main/res/values
    • features/messenger/src/main/kotlin/com/flipcash/app/messenger/internal/screens/components

apps/flipcash/core/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@
785785

786786
<string name="label_chatReceipt_delivered">Delivered</string>
787787
<string name="label_chatReceipt_read">Read</string>
788-
<string name="label_chatReceipt_notSent">Not Sent</string>
788+
<string name="label_chatReceipt_notSent">Not Delivered. Tap to retry</string>
789789
<string name="label_chatReceipt_yesterday">Yesterday</string>
790790
<string name="title_messageNotSent">Message Not Sent</string>
791791
<string name="description_messageNotSent">Your message could not be delivered. Would you like to try again?</string>

apps/flipcash/features/messenger/src/main/kotlin/com/flipcash/app/messenger/internal/screens/components/ReceiptLabel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ internal fun ReceiptLabel(
127127
fontWeight = FontWeight.Bold,
128128
),
129129
color = if (animatedStatus == ReceiptStatus.FAILED) {
130-
CodeTheme.colors.error
130+
CodeTheme.colors.errorText
131131
} else {
132132
CodeTheme.colors.textSecondary
133133
},

0 commit comments

Comments
 (0)