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, ) } }