Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-28 16:02:17 +07:00
parent 2883c49098
commit 51c05e6d6d

View file

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