actually parse user

This commit is contained in:
FloatingGhost 2023-02-04 20:25:04 +00:00
parent d4a8855683
commit fff0810f02

View file

@ -1608,7 +1608,7 @@ const getFollowRequests = ({ credentials, pagination: savedPagination }) => {
}).then((data) => { }).then((data) => {
return { return {
pagination, pagination,
data data: data.map(parseUser)
} }
}); });
} }