瀏覽代碼

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

NFish 1 月之前
父節點
當前提交
37486a9cc6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      web/app/components/header/github-star/index.tsx

+ 1 - 1
web/app/components/header/github-star/index.tsx

@@ -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