Skip to content

Commit

Permalink
Change accessToken declaration from const to let for reassignment cap…
Browse files Browse the repository at this point in the history
…ability
  • Loading branch information
theo-armour committed Jan 12, 2025
1 parent f3e97ab commit 92c77b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sandbox/test-token/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<script>

const accessToken = localStorage.getItem( "githubAccessToken" ) || "";
let accessToken = localStorage.getItem( "githubAccessToken" ) || "";

if ( !accessToken || accessToken === "" || accessToken === "null" ) {

Expand Down

0 comments on commit 92c77b9

Please sign in to comment.