Skip to content

Commit a6ab244

Browse files
committed
Increase page size
1 parent 3a7a9bc commit a6ab244

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/acs-chat-adapter/src/composers/ACSChatMessagesComposer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import useACSClients from '../hooks/useACSClients';
1212
import usePrevious from '../hooks/usePrevious';
1313
import warn from '../utils/warn';
1414

15-
const PAGE_SIZE = 100;
15+
const PAGE_SIZE = 1000;
1616
let debug;
1717
let EMPTY_MAP;
1818

packages/acs-chat-adapter/src/composers/ACSParticipantsComposer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import styleConsole from '../utils/styleConsole';
77
import useACSChatThreadSelector from '../hooks/useACSChatThreadSelector';
88
import useACSClients from '../hooks/useACSClients';
99

10-
const PAGE_SIZE = 100;
10+
const PAGE_SIZE = 1000;
1111
let debug;
1212

1313
const ACSParticipantsComposer: FC = ({ children }) => {

packages/acs-chat-adapter/src/composers/ACSReadReceiptsComposer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import styleConsole from '../utils/styleConsole';
99
import useACSChatThreadSelector from '../hooks/useACSChatThreadSelector';
1010
import useACSClients from '../hooks/useACSClients';
1111

12-
const PAGE_SIZE = 100;
12+
const PAGE_SIZE = 1000;
1313
let debug;
1414
let EMPTY_ARRAY;
1515

0 commit comments

Comments
 (0)