Skip to content

Commit

Permalink
fix: token not working
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Oct 12, 2024
1 parent d498de4 commit 22100ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fetchContributors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function fetchData<T>(url: string): Promise<T> {
try {
const response = await fetch(url, {
headers: {
Authorization: `token ${process.env.token}`,
Authorization: `Bearer ${process.env.token}`,
},
});

Expand Down

0 comments on commit 22100ba

Please sign in to comment.