Skip to content

Commit

Permalink
feat: getGitHubAccessToken should be awaited
Browse files Browse the repository at this point in the history
  • Loading branch information
zugdev committed Nov 8, 2024
1 parent a4986f2 commit 56c94b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/home/authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export async function authentication() {
return;
}

const accessToken = getGitHubAccessToken();
const accessToken = await getGitHubAccessToken();
if (!accessToken) {
renderGitHubLoginButton();
}
Expand Down

0 comments on commit 56c94b0

Please sign in to comment.