From 7f4454c8d2395a081ef4246710e787856840eef1 Mon Sep 17 00:00:00 2001 From: Tangem Date: Fri, 17 Jul 2026 12:48:48 +0400 Subject: [PATCH] Updated on 2026-08-14 --- .../tangem/features/txhistory/state/TxHistoryStateController.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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