From 51c05e6d6dba3cd1082052bc44250b56a6812a15 Mon Sep 17 00:00:00 2001 From: Tangem Date: Fri, 28 Nov 2025 16:02:17 +0700 Subject: [PATCH] Updated on 2026-08-14 --- .../markets/portfolio/add/impl/model/AddToPortfolioModel.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/markets/impl/src/main/kotlin/com/tangem/features/markets/portfolio/add/impl/model/AddToPortfolioModel.kt b/features/markets/impl/src/main/kotlin/com/tangem/features/markets/portfolio/add/impl/model/AddToPortfolioModel.kt index 548977f967..f165c1bb40 100644 --- a/features/markets/impl/src/main/kotlin/com/tangem/features/markets/portfolio/add/impl/model/AddToPortfolioModel.kt +++ b/features/markets/impl/src/main/kotlin/com/tangem/features/markets/portfolio/add/impl/model/AddToPortfolioModel.kt @@ -242,11 +242,11 @@ internal class AddToPortfolioModel @Inject constructor( } }.collect() } - return timeFlow.map { + return timeFlow.map { actionsState -> PortfolioData.CryptoCurrencyData( userWallet = selectedPortfolio.userWallet, - status = addedToken, - actions = it.states, + status = actionsState.cryptoCurrencyStatus, + actions = actionsState.states, ) } }