Skip to content

Commit e57f109

Browse files
committed
fix: show latest 50 contacts in chat
1 parent ff81670 commit e57f109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/stores/contacts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export const useContactsStore = defineStore('contacts', () => {
8484

8585
// Contacts pagination
8686
const contactsPage = ref(1)
87-
const contactsLimit = ref(25)
87+
const contactsLimit = ref(50)
8888
const contactsTotal = ref(0)
8989
const isLoadingMoreContacts = ref(false)
9090
const hasMoreContacts = computed(() => contacts.value.length < contactsTotal.value)

0 commit comments

Comments
 (0)