Skip to content

Commit

Permalink
fix: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Aman035 committed Jul 1, 2024
1 parent 5333500 commit 484f95d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/restapi/src/lib/chat/send.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ export const sendCore = async (
* 2. Takes care of deprecated fields
*/
const computedOptions = computeOptions(options);
let { messageType, messageObj, account, to, signer, pgpPrivateKey, env } =
const { messageType, messageObj, account, signer, pgpPrivateKey, env } =
computedOptions;
let { to } = computedOptions;
/**
* Validate Input Options
*/
Expand Down

0 comments on commit 484f95d

Please sign in to comment.