Compare commits

...

1 Commits
team ... main

Author SHA1 Message Date
alaguraj
4b4f77864b reservation table users limit set 100000 lists view in table format 2025-11-20 16:30:11 +05:30

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);