Chats: normalize chat messages from the API

alex-chats
Alex Gleason 2 years ago
parent 2f5caad67f
commit 271bc271f7
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -5,6 +5,7 @@ import snackbar from 'soapbox/actions/snackbar';
import compareId from 'soapbox/compare_id';
import { useChatContext } from 'soapbox/contexts/chat-context';
import { useApi, useAppDispatch } from 'soapbox/hooks';
import { normalizeChatMessage } from 'soapbox/normalizers';
import { queryClient } from './client';
@ -51,7 +52,7 @@ const useChatMessages = (chatId: string) => {
});
const hasMore = !!headers.link;
const result = data.sort(reverseOrder);
const result = data.sort(reverseOrder).map(normalizeChatMessage);
const nextMaxId = result[0]?.id;
return {

Loading…
Cancel
Save