fix: update default github star count value (#15708)

This commit is contained in:
NFish 2025-03-13 14:39:26 +08:00 committed by GitHub
parent efebbffe96
commit 37486a9cc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ const GithubStar: FC<{ className: string }> = (props) => {
queryKey: ['github-star'],
queryFn: getStar,
enabled: process.env.NODE_ENV !== 'development',
initialData: { stargazers_count: 6000 },
initialData: { stargazers_count: 81204 },
})
if (isFetching)
return null