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

@@ -23,13 +23,13 @@ function EstimateFormProvider({ estimateId, ...props }) {
const {
data: { items },
isFetching: isItemsFetching,
} = useItems();
} = useItems({ page_size: 10000 });
// Handle fetch customers data table or list
const {
data: { customers },
isFetch: isCustomersFetching,
} = useCustomers();
} = useCustomers({ page_size: 10000 });
// Handle fetch settings.
useSettings();