Skip to content

Commit

Permalink
fix: fixed build issue (#1256)
Browse files Browse the repository at this point in the history
  • Loading branch information
mishramonalisha76 authored May 2, 2024
1 parent 811b8e9 commit 6e5dc1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const useGroupMemberUtilities = () => {
async ({ chatId, accountId }: fetchMemberStatusParams): Promise<ParticipantStatus | undefined> => {
setLoading(true);
try {
const response = await user?.chat.group.participants.status(chatId, accountId);
const response = await user?.chat.group.participants.status(chatId, { overrideAccount: accountId });
console.debug(response);
setLoading(false);
return response;
Expand Down

0 comments on commit 6e5dc1c

Please sign in to comment.