From 255beb787498fe0f692de7843a5d5f25764f92e6 Mon Sep 17 00:00:00 2001 From: Riddhiagrawal001 Date: Wed, 28 Aug 2024 13:02:45 +0530 Subject: [PATCH] fix: customers api fix --- src/screens/APIUtils/APIUtils.res | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/APIUtils/APIUtils.res b/src/screens/APIUtils/APIUtils.res index 85a1f11d6..8c6731f99 100644 --- a/src/screens/APIUtils/APIUtils.res +++ b/src/screens/APIUtils/APIUtils.res @@ -38,7 +38,7 @@ let useGetURL = () => { | Get => switch id { | Some(customerId) => `customers/${customerId}` - | None => `customers/list?limit=10000` + | None => `customers/list?limit=1000` } | _ => "" }