diff --git a/src/components/donations/DonationsOverview.svelte b/src/components/donations/DonationsOverview.svelte index 51fe5549..e077cfd2 100644 --- a/src/components/donations/DonationsOverview.svelte +++ b/src/components/donations/DonationsOverview.svelte @@ -23,7 +23,10 @@ import DonationStatus from "./DonationStatus.svelte"; import DonationTableAction from "./DonationTableAction.svelte"; import DeleteDonationModal from "./DeleteDonationModal.svelte"; - import { donationDonorFilter, donationRunnerFilter } from "../shared/tablefilters"; + import { + donationDonorFilter, + donationRunnerFilter, + } from "../shared/tablefilters"; $: searchvalue = ""; $: active_deletes = []; $: active_edits = []; @@ -173,7 +176,7 @@ while (page >= 0) { const donations = await DonationService.donationControllerGetAll( page, - 500 + 100 ); if (donations.length == 0) { page = -2;