Skip to content

Commit

Permalink
Alpha deployment (#1257)
Browse files Browse the repository at this point in the history
* fix: fixed build issue (#1256)

* fix: published new version
  • Loading branch information
mishramonalisha76 authored May 2, 2024
1 parent 34e5ea9 commit 9e36ead
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/uiweb/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/uiweb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pushprotocol/uiweb",
"version": "0.0.1-alpha.46",
"version": "1.4.0-alpha.4",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
Expand Down
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 9e36ead

Please sign in to comment.