Skip to content

Commit

Permalink
Fix localStorage bug
Browse files Browse the repository at this point in the history
  • Loading branch information
JezerM committed Mar 13, 2022
1 parent 977fa7c commit 5903a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/gruvbox/ts/accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class Accounts {

public updateOnStartup(): void {
if (!this._usersObject) return;
const dfUser = window.localStorage.getItem("defaultuser");
const dfUser = window.localStorage.getItem("defaultUser");
let user: LightDMUser;
try {
user = JSON.parse(dfUser ?? "");
Expand Down

0 comments on commit 5903a53

Please sign in to comment.