We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0084a56 commit a348952Copy full SHA for a348952
src/renderer/utils/helpers.ts
@@ -90,11 +90,9 @@ async function getDiscussionUrl(notification: Notification): Promise<Link> {
90
if (discussion) {
91
url.href = discussion.url;
92
93
- const discussionComments = discussion.comments.nodes:
94
-
95
const closestComment = getClosestDiscussionCommentOrReply(
96
notification,
97
- discussionComments,
+ discussion.comments.nodes,
98
);
99
if (closestComment) {
100
url.hash = `#discussioncomment-${closestComment.databaseId}`;
0 commit comments