Fix infinite pagination of chats

environments/review-chats-g56n7m/deployments/1665
Chewbacca 2 years ago
parent 4a48e9d510
commit 9cc9e8876b

@ -169,7 +169,10 @@ const useChats = (search?: string) => {
},
});
const data = flattenPages(queryInfo.data);
const data = queryInfo.data?.pages.reduce<IChat[]>(
(prev: IChat[], curr) => [...prev, ...curr.result],
[],
);
const chatsQuery = {
...queryInfo,

Loading…
Cancel
Save