diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.ts b/frontend/src/app/components/transactions-list/transactions-list.component.ts index bb54e77c3..dd7350954 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.ts +++ b/frontend/src/app/components/transactions-list/transactions-list.component.ts @@ -78,7 +78,7 @@ export class TransactionsListComponent implements OnInit, OnChanges { const scrollTop = document.documentElement.scrollTop; if (scrollHeight > 0){ const percentageScrolled = scrollTop * 100 / scrollHeight; - if (percentageScrolled > 90){ + if (percentageScrolled > 70){ this.loadMore.emit(); } }