Skip to content

Commit 6904a4b

Browse files
authored
Update account.html
Testing
1 parent aa83a3d commit 6904a4b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/account.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,10 @@
186186

187187
function devToken() {
188188
const usernameEncoded = localStorage.getItem('usernameEnc');
189-
const joined = "Your dev token is:" + usernameEncoded + "- Make sure to only share it with Coding Hut services and partners or else you can get hacked!";
189+
const username = localStorage.getItem('usernameEnc');
190+
const joined = "Your dev token is:" + username + "- Make sure to only share it with Coding Hut services and partners or else you can get hacked!";
190191
devTokens.style.color = "green";
191-
devTokens.textContent = "Your dev token is:" + usernameEncoded + "- Make sure to only share it with Coding Hut services and partners or else you can get hacked!";
192+
devTokens.textContent = "Your dev token is:" + username + "- Make sure to only share it with Coding Hut services and partners or else you can get hacked!";
192193
}
193194
</script>
194195
</head>

0 commit comments

Comments
 (0)