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.
1 parent a75252f commit 25173c3Copy full SHA for 25173c3
src/utilities/githubAPI.mjs
@@ -23,6 +23,10 @@ if (
23
api = new GithubAPI({
24
auth: process.env.GITHUB_TOKEN,
25
});
26
- console.log(typeof process.env.GITHUB_TOKEN === "undefined" ? 'api is not authenticated' : 'api is authenticated locally');
+ console.log(
27
+ typeof process.env.GITHUB_TOKEN === 'undefined'
28
+ ? 'api is not authenticated'
29
+ : 'api is authenticated locally'
30
+ );
31
}
32
export default api;
0 commit comments