diff --git a/src/components/reservation/ReservationListComponent.jsx b/src/components/reservation/ReservationListComponent.jsx index 83a85a7..7dac92d 100644 --- a/src/components/reservation/ReservationListComponent.jsx +++ b/src/components/reservation/ReservationListComponent.jsx @@ -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);