Skip to content

Commit

Permalink
fix: fix tmp error
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammeds1992 committed Apr 16, 2024
1 parent 7e32f93 commit bd70cda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/restapi/src/lib/chat/getChatInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ export const getChatInfo = async (

const API_BASE_URL = getAPIBaseUrls(env);
const requestUrl = `${API_BASE_URL}/v1/chat/${await convertToValidDID(
receipient,
recipient,
env
)}/address/${await convertToValidDID(sender, env)}`;
)}/address/${await convertToValidDID(account, env)}`;
const response = await axiosGet<ChatInfoResponse>(requestUrl);
return response.data;
} catch (err) {
Expand Down

0 comments on commit bd70cda

Please sign in to comment.