fix: increase the max items count.

This commit is contained in:
a.bouhuolia
2021-03-09 13:17:34 +02:00
parent 8f95b09649
commit 2494a33d21
6 changed files with 11 additions and 12 deletions

View File

@@ -41,7 +41,7 @@ function PaymentReceiveFormProvider({ paymentReceiveId, ...props }) {
const {
data: { customers },
isFetching: isCustomersFetching,
} = useCustomers();
} = useCustomers({ page_size: 10000 });
// Detarmines whether the new mode.
const isNewMode = !paymentReceiveId;