Skip to content

Commit

Permalink
fix: ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
gekkedev authored Oct 31, 2024
1 parent 2fb3c6f commit 54b41a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/api/layers/sender.layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,10 @@ export class SenderLayer extends ListenerLayer {
* @param msgId Message Id or `Message` object
* @param reaction Emoji as string or `false` to remove an existing reaction
*/
public async sendReactionToMessage(msgId: string | Message, reaction: string | false) {
public async sendReactionToMessage(
msgId: string | Message,
reaction: string | false
) {
return evaluateAndReturn(
this.page,
({ msgId, reaction }) => WPP.chat.sendReactionToMessage(msgId, reaction),
Expand Down

0 comments on commit 54b41a2

Please sign in to comment.