Skip to content

Commit

Permalink
fix: fix api endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Aman035 committed Nov 9, 2023
1 parent 0d73b22 commit 49b0a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/restapi/src/lib/chat/getGroupMembersPublicKeys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const getGroupMembersPublicKeys = async (
}

const API_BASE_URL = getAPIBaseUrls(env);
const requestUrl = `${API_BASE_URL}/v1/chat/groups/${chatId}/members/publickeys?pageNumber=${page}&pageSize=${limit}`;
const requestUrl = `${API_BASE_URL}/v1/chat/groups/${chatId}/members/publicKeys?pageNumber=${page}&pageSize=${limit}`;

const response = await axios.get(requestUrl);
return response.data;
Expand Down

0 comments on commit 49b0a6f

Please sign in to comment.