Browse Source

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

NFish 1 tháng trước cách đây
mục cha
commit
37486a9cc6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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