Skip to content

Commit 3974f95

Browse files
committed
refactor(api): use @octokit/types REST schema type
Signed-off-by: Adam Setch <[email protected]>
1 parent ae377ab commit 3974f95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/renderer/typesGitHub.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ type GitHubSubject = Omit<
7272
BaseSubject,
7373
'url' | 'latest_comment_url' | 'type'
7474
> & {
75-
url: Link;
76-
latest_comment_url: Link;
75+
url: Link | null;
76+
latest_comment_url: Link | null;
7777
type: SubjectType;
7878
};
7979

0 commit comments

Comments
 (0)