diff --git a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreen.kt b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreen.kt index 4a554824e8..0760de9790 100644 --- a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreen.kt +++ b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreen.kt @@ -222,6 +222,14 @@ private fun TokenDetailsBody( item(key = "yield_supply_block") { yieldSupplyComponent.Content(modifier = itemModifier.padding(vertical = TangemTheme.dimens2.x3)) } + tokenDetailsUM.quickTopUpBlock?.let { quickTopUpBlock -> + item(key = "quick_top_up_block") { + QuickTopUpBlock( + state = quickTopUpBlock, + modifier = itemModifier.padding(vertical = TangemTheme.dimens2.x0), + ) + } + } if (balance is TokenDetailsBalanceBlockUM.Content && balance.isBalanceZero) { item(key = "zero_balance_actions") { ZeroBalanceActionsBlock( @@ -236,14 +244,6 @@ private fun TokenDetailsBody( modifier = expressTransactionModifier, ) } - tokenDetailsUM.quickTopUpBlock?.let { quickTopUpBlock -> - item(key = "quick_top_up_block") { - QuickTopUpBlock( - state = quickTopUpBlock, - modifier = itemModifier.padding(vertical = TangemTheme.dimens2.x0), - ) - } - } with(txHistoryComponent) { txHistoryContent(listState = listState, state = txHistoryState) }