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 56a6a7a commit 7139c48Copy full SHA for 7139c48
src/account.html
@@ -154,9 +154,9 @@
154
const DK = new URLSearchParams(window.location.search).get('devKey');
155
156
if (DK) {
157
- const username = new URLSearchParams(window.location.search).get('devKey');
+ const devKey = new URLSearchParams(window.location.search).get('devKey');
158
159
- if (username) {
+ if (devKey) {
160
const decodedUsername = decodeUsername(username); // Decode the username using atob
161
localStorage.setItem('usernameEnc', username); // Store the original Base64-encoded username
162
localStorage.setItem('loggedIn', 'true');
0 commit comments