From 0a893aae3f2b7b558da72f8cc10df5009fceec43 Mon Sep 17 00:00:00 2001 From: Loi Phan <123229563+Nez27@users.noreply.github.com> Date: Tue, 5 Dec 2023 10:04:21 +0700 Subject: [PATCH] Update DEFAULT_PAGE_SIZE --- hotel-management/src/constants/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotel-management/src/constants/config.ts b/hotel-management/src/constants/config.ts index cfffd62..52d1d39 100644 --- a/hotel-management/src/constants/config.ts +++ b/hotel-management/src/constants/config.ts @@ -1,6 +1,6 @@ const DEFAULT_SORT_BY = 'id'; const DEFAULT_ORDER_BY = 'asc'; -const DEFAULT_PAGE_SIZE = 5; +const DEFAULT_PAGE_SIZE = 10; const supabaseUrl = 'https://pjqujsjzzdrlrgqbxepe.supabase.co'; const supabaseKey = process.env.VITE_SUPABASE_KEY;