Skip to content

Commit 25173c3

Browse files
committed
chore: fix lint
1 parent a75252f commit 25173c3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/utilities/githubAPI.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ if (
2323
api = new GithubAPI({
2424
auth: process.env.GITHUB_TOKEN,
2525
});
26-
console.log(typeof process.env.GITHUB_TOKEN === "undefined" ? 'api is not authenticated' : 'api is authenticated locally');
26+
console.log(
27+
typeof process.env.GITHUB_TOKEN === 'undefined'
28+
? 'api is not authenticated'
29+
: 'api is authenticated locally'
30+
);
2731
}
2832
export default api;

0 commit comments

Comments
 (0)