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 95590be commit a068e3dCopy full SHA for a068e3d
src/account.html
@@ -187,9 +187,9 @@
187
function devToken() {
188
const usernameEnc = localStorage.getItem('usernameEnc');
189
const username = localStorage.getItem('username');
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!";
+ const joined = "Your dev token is:" + usernameEnc + " - Make sure to only share it with Coding Hut services and partners or else you can get hacked!";
191
devTokens.style.color = "green";
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!";
+ devTokens.textContent = joined;
193
}
194
</script>
195
</head>
0 commit comments