From d12ebc3422e6616c4da2ffc7a3dca7f684600624 Mon Sep 17 00:00:00 2001 From: cutestnekoaqua Date: Wed, 18 Jan 2023 21:35:38 +0100 Subject: [PATCH] potential fix --- packages/client/src/pages/messaging/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client/src/pages/messaging/index.vue b/packages/client/src/pages/messaging/index.vue index 1966f29690..79cb1f7313 100644 --- a/packages/client/src/pages/messaging/index.vue +++ b/packages/client/src/pages/messaging/index.vue @@ -89,14 +89,14 @@ definePageMetadata({ const dmsPagination = { endpoint: 'messaging/history' as const, - limit: 15, + limit: 100, params: { group: false, }, }; const groupsPagination = { endpoint: 'messaging/history' as const, - limit: 5, + limit: 30, params: { group: true, },