Compare commits

...

1 Commits

Author SHA1 Message Date
47e59734be chore: check it build will pass 2024-11-04 16:40:45 +00:00

View File

@ -76,9 +76,9 @@ export type EarlyAdoptersType = z.infer<typeof ZEarlyAdoptersResponse>;
const fetchGithubStats = async () => { const fetchGithubStats = async () => {
return await fetch('https://api.github.com/repos/documenso/documenso', { return await fetch('https://api.github.com/repos/documenso/documenso', {
headers: { // headers: {
...GITHUB_HEADERS, // ...GITHUB_HEADERS,
}, // },
}) })
.then(async (res) => res.json()) .then(async (res) => res.json())
.then((res) => ZGithubStatsResponse.parse(res)); .then((res) => ZGithubStatsResponse.parse(res));