Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-02 23:41:01 +03:00
parent 3580350769
commit 8aba7b07d1
49 changed files with 172 additions and 134 deletions

View file

@ -57,7 +57,7 @@ internal class TangemPayTxHistoryListManager(
BatchAction.Reload(
requestParams = TangemPayTxHistoryListConfig(
customerWalletAddress = customerWalletAddress,
refresh = true,
shouldRefresh = true,
),
),
)
@ -66,7 +66,7 @@ internal class TangemPayTxHistoryListManager(
suspend fun loadMore(customerWalletAddress: String) {
actionsFlow.emit(
BatchAction.LoadMore(
requestParams = TangemPayTxHistoryListConfig(customerWalletAddress, refresh = false),
requestParams = TangemPayTxHistoryListConfig(customerWalletAddress, shouldRefresh = false),
),
)
}