fix: 🐛 pagination on repeating components

This commit is contained in:
ThatOneCalculator 2023-09-10 14:04:06 -07:00
parent 8b62358a0a
commit dbd05c0a1e
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 3 additions and 0 deletions

View file

@ -160,6 +160,7 @@ const dmsPagination = {
params: { params: {
group: false, group: false,
}, },
noPaging: true,
}; };
const groupsPagination = { const groupsPagination = {
endpoint: "messaging/history" as const, endpoint: "messaging/history" as const,
@ -167,6 +168,7 @@ const groupsPagination = {
params: { params: {
group: true, group: true,
}, },
noPaging: true,
}; };
function onMessage(message): void { function onMessage(message): void {

View file

@ -73,6 +73,7 @@ const usersPagination = {
query: props.query, query: props.query,
origin: "combined", origin: "combined",
})), })),
noPaging: true,
}; };
const tabs = ["notes", "users"]; const tabs = ["notes", "users"];