We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 49bb4d9 + 078650b commit ad39fe3Copy full SHA for ad39fe3
pages/kusa/[username].tsx
@@ -15,9 +15,7 @@ type Props = {
15
};
16
17
const fetchContribution = async (username: string, to: string): Promise<number[]> => {
18
- console.log(`https://forked-gh-contributions.deno.dev/${username}.json?to=${to}`);
19
-
20
- const res = await fetch(`https://forked-gh-contributions.deno.dev/${username}.json?to=${to}`);
+ const res = await fetch(`https://github-contributions-api.deno.dev/${username}.json?to=${to}`);
21
const json = await res.json();
22
23
const contributions = json.contributions
0 commit comments