I am using @amityco/ts-sdk version 6.5.0.
I got the critical issue that when i tried to get the list of user who likes the post it will always give me an empty array instead of array of userIds.
My Code is
ReactionRepository.getReactions(
{ referenceId: postId, referenceType: 'post' },
({data}) => {
setReactions(data);
}
);