Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-14 17:27:25 +04:00
commit 21418379dd
10 changed files with 261 additions and 6 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)
}