Skip to content

Commit 8ad0a55

Browse files
committed
fix: change stargazerCount to be nullable in Issue interface
1 parent 13aa591 commit 8ad0a55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/api/github-graphql-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ interface Issue {
3535
repository: {
3636
name: string
3737
nameWithOwner: string
38-
stargazerCount?: number
38+
stargazerCount: number | null
3939
primaryLanguage: { name: string } | null
4040
owner: {
4141
login: string

0 commit comments

Comments
 (0)