Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-14 17:11:56 +04:00
parent 42d5bbbe6c
commit 3388d7a3ae
6 changed files with 257 additions and 2 deletions

View file

@ -337,7 +337,11 @@ internal class ManageFundsModel @Inject constructor(
}
private fun tokenActionsRoute(status: CryptoCurrencyStatus): UiRoute.TokenActions {
val title = resourceReference(R.string.get_token_title, wrappedList(status.currency.name))
val title = when (flowType) {
ManageFundsComponent.FlowType.Transfer -> resourceReference(R.string.common_transfer)
ManageFundsComponent.FlowType.AddFunds ->
resourceReference(R.string.get_token_title, wrappedList(status.currency.name))
}
return UiRoute.TokenActions(title = title)
}