feat: increase wallet transaction page size to 100

https://claude.ai/code/session_01CdNY7qYDRHJr1jhAFvVgzj
This commit is contained in:
Claude
2026-03-17 02:34:15 +00:00
parent 4a430e6663
commit c3f7e491a6
@@ -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<String?>(null)
val error = _error.asStateFlow()