From 4b4f77864b89ee6ce02e287e45a2beee88e2cf73 Mon Sep 17 00:00:00 2001 From: alaguraj Date: Thu, 20 Nov 2025 16:30:11 +0530 Subject: [PATCH] reservation table users limit set 100000 lists view in table format --- src/components/reservation/ReservationListComponent.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);