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 546a599 commit 1b930a8Copy full SHA for 1b930a8
src/account.html
@@ -157,8 +157,8 @@
157
const devKey = new URLSearchParams(window.location.search).get('devKey');
158
159
if (devKey) {
160
- const decodedUsername = decodeUsername(username); // Decode the username using atob
161
- localStorage.setItem('usernameEnc', username); // Store the original Base64-encoded username
+ const decodedUsername = (devKey); // Decode the username using atob
+ localStorage.setItem('usernameEnc', devKey); // Store the original Base64-encoded username
162
localStorage.setItem('loggedIn', 'true');
163
window.location.href = 'index.html';
164
}
0 commit comments