Skip to content

Commit 93c694e

Browse files
committed
Minor text change
1 parent 4c3ed73 commit 93c694e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

common/src/commonMain/composeResources/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,6 +1613,6 @@
16131613
<string name="id_get_support">Get Support</string>
16141614
<string name="id_issue_description">Issue description</string>
16151615
<string name="id_please_be_as_detailed_as_possible">Please be as detailed as possible when describing the issue.</string>
1616-
<string name="id_thanks_your_message_has_been_sent">Thanks, your message has been sent.</string>
16171616
<string name="id_i_understand_that_asking_for_support">I understand that asking for support through Tor will reduce my anonymity</string>
1617+
<string name="id_you_will_receive_an_email_from">You will receive an email from Blockstream support</string>
16181618
</resources>

common/src/commonMain/kotlin/com/blockstream/common/models/support/SupportViewModel.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.blockstream.common.models.support
33
import blockstream_green.common.generated.resources.Res
44
import blockstream_green.common.generated.resources.id_contact_support
55
import blockstream_green.common.generated.resources.id_thank_you_for_your_feedback
6-
import blockstream_green.common.generated.resources.id_thanks_your_message_has_been_sent
6+
import blockstream_green.common.generated.resources.id_you_will_receive_an_email_from
77
import com.blockstream.common.SupportType
88
import com.blockstream.common.data.GreenWallet
99
import com.blockstream.common.data.NavData
@@ -99,7 +99,7 @@ class SupportViewModel(type: SupportType, supportData: SupportData, greenWalletO
9999
autoRetry = false
100100
)
101101
}, onSuccess = {
102-
postSideEffect(SideEffects.Snackbar(text = StringHolder.create(if (type == SupportType.FEEDBACK) Res.string.id_thank_you_for_your_feedback else Res.string.id_thanks_your_message_has_been_sent)))
102+
postSideEffect(SideEffects.Snackbar(text = StringHolder.create(if (type == SupportType.FEEDBACK) Res.string.id_thank_you_for_your_feedback else Res.string.id_you_will_receive_an_email_from)))
103103
postSideEffect(SideEffects.NavigateBack())
104104
})
105105
}

0 commit comments

Comments
 (0)