fix: Removed dynamic pagesize adjustments
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-05-04 20:03:23 +02:00
parent dacb2f8ace
commit 803d64c78c
4 changed files with 4 additions and 10 deletions

View File

@@ -168,7 +168,7 @@
onMount(async () => {
let page = 0;
let pagesize = 100;
let pagesize = 300;
while (page >= 0) {
const donations = await DonationService.donationControllerGetAll(
page,
@@ -186,7 +186,6 @@
dataLoaded = true;
page++;
pagesize += 100;
}
});
</script>