Updated on 2026-08-14

This commit is contained in:
Tangem 2020-09-01 10:26:46 +03:00
parent 0b75473cb6
commit 6aa2d4889a
3 changed files with 9 additions and 4 deletions

View file

@ -27,7 +27,8 @@ class PayIdDialog(context: Context) : Dialog(context) {
if (this.et_payid.text.isNullOrBlank()) {
store.dispatch(WalletAction.CreatePayId.EmptyField)
} else {
val payid = this.et_payid.text!!.toString() + "\$payid.tangem.com"
val payid = this.et_payid.text!!.toString() +
this.context.getString(R.string.wallet_pay_id_address)
store.dispatch(WalletAction.CreatePayId.CompleteCreatingPayId(payid))
}
}