From 543e317e776710e4dc57df30a8bfb83fa9bfe571 Mon Sep 17 00:00:00 2001 From: Tangem Date: Tue, 23 Jun 2026 16:54:30 +0200 Subject: [PATCH] Updated on 2026-08-14 --- .../tokendetails/ui/TokenDetailsScreenLegacy.kt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreenLegacy.kt b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreenLegacy.kt index ea6976fc1b..4dbe6900a9 100644 --- a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreenLegacy.kt +++ b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreenLegacy.kt @@ -22,6 +22,7 @@ import com.tangem.core.ui.components.marketprice.MarketPriceBlock import com.tangem.core.ui.components.marketprice.MarketPriceBlockState import com.tangem.core.ui.components.notifications.Notification import com.tangem.core.ui.res.TangemTheme +import com.tangem.core.ui.res.TangemThemeRedesign import com.tangem.core.ui.res.TangemThemePreview import com.tangem.core.ui.test.TokenDetailsScreenTestTags import com.tangem.feature.tokendetails.presentation.tokendetails.TokenDetailsPreviewData @@ -162,10 +163,12 @@ internal fun TokenDetailsScreenLegacy( state.quickTopUpBlock?.let { quickTopUpBlock -> item(key = "quick_top_up_block") { - QuickTopUpBlock( - state = quickTopUpBlock, - modifier = itemModifier, - ) + TangemThemeRedesign { + QuickTopUpBlock( + state = quickTopUpBlock, + modifier = itemModifier, + ) + } } }