From 07fd5bc8a6b321db452d27d2f9a41e487224dfa5 Mon Sep 17 00:00:00 2001 From: Hyro Date: Sun, 28 Aug 2022 21:24:04 +0200 Subject: [PATCH] fix(githubUtils): add null to setIssue --- src/utils/githubUtils.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/utils/githubUtils.ts b/src/utils/githubUtils.ts index d17dcad..0ef424c 100644 --- a/src/utils/githubUtils.ts +++ b/src/utils/githubUtils.ts @@ -153,7 +153,8 @@ export const setIssue = async(issue: Issue) => { issue.html_url, issue.user_login, issue.user_html_url, - '(IS)' + '(IS)', + null, ]); } } @@ -266,4 +267,4 @@ export const formatEmojiStatus = (data: Issue | PullRequest) => { } return emoji; -} \ No newline at end of file +}