From c3f7e491a60de541c27c97a3a2ecfaec077a2d7e Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 17 Mar 2026 02:34:15 +0000 Subject: [PATCH] feat: increase wallet transaction page size to 100 https://claude.ai/code/session_01CdNY7qYDRHJr1jhAFvVgzj --- .../amethyst/ui/screen/loggedIn/wallet/WalletViewModel.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/wallet/WalletViewModel.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/wallet/WalletViewModel.kt index 48cc4bdd9..0de7e1a58 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/wallet/WalletViewModel.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/wallet/WalletViewModel.kt @@ -94,7 +94,7 @@ class WalletViewModel : ViewModel() { private val _hasMoreTransactions = MutableStateFlow(true) val hasMoreTransactions = _hasMoreTransactions.asStateFlow() - private val pageSize = 20 + private val pageSize = 100 private val _error = MutableStateFlow(null) val error = _error.asStateFlow()