reservation table users limit set 100000 lists view in table format

This commit is contained in:
alaguraj 2025-11-20 16:30:11 +05:30
parent efac879e03
commit 4b4f77864b

View File

@ -45,7 +45,7 @@ const ReservationListComponent = () => {
try {
setLoading(true);
const res = await client.get(
`/Dine360%20Reservation?fields=["*"]&filters=[["restaurantbranch","=","${restaruntBranch}"]]`
`/Dine360%20Reservation?fields=["*"]&filters=[["restaurantbranch","=","${restaruntBranch}"]]&limit_page_length=100000`
);
const data = res?.data?.data || [];
setAllReservations(data);