diff --git a/features/txhistory/impl/src/main/kotlin/com/tangem/features/txhistory/state/TxHistoryStateController.kt b/features/txhistory/impl/src/main/kotlin/com/tangem/features/txhistory/state/TxHistoryStateController.kt index d374c30cc3..c38a569c36 100644 --- a/features/txhistory/impl/src/main/kotlin/com/tangem/features/txhistory/state/TxHistoryStateController.kt +++ b/features/txhistory/impl/src/main/kotlin/com/tangem/features/txhistory/state/TxHistoryStateController.kt @@ -27,7 +27,7 @@ internal class TxHistoryStateController @Inject constructor() { private val _uiState: MutableStateFlow = MutableStateFlow(TxHistoryItemsUM.Loading(isBalanceHidden = true, onExploreClick = {})) - val uiState: StateFlow = _uiState + val uiState: StateFlow = _uiState.asStateFlow() val isNotSupported: Boolean get() = _uiState.value is TxHistoryItemsUM.NotSupported