mirror of
https://github.com/sern-handler/automata
synced 2026-06-06 01:16:51 +00:00
remove await from return statement
Co-authored-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com>
This commit is contained in:
@@ -148,7 +148,7 @@ process.stdin.on('data', async (data) => {
|
||||
})
|
||||
|
||||
async function react(owner: string, repo: string, commentId: number, reaction: Reaction) {
|
||||
return await octokit.request('POST /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions', {
|
||||
return octokit.request('POST /repos/{owner}/{repo}/issues/comments/{comment_id}/reactions', {
|
||||
owner,
|
||||
repo,
|
||||
comment_id: commentId,
|
||||
|
||||
Reference in New Issue
Block a user