Skip to content

Commit

Permalink
frontend: fix typo in localStorage key.
Browse files Browse the repository at this point in the history
  • Loading branch information
ffreddow committed Oct 15, 2024
1 parent 3819e0e commit ac44cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export function User() {

const t = i18n.t;

const loginSaltBs64 = window.localStorage.getItem("LoginKey");
const loginSaltBs64 = window.localStorage.getItem("loginKey");
const loginSalt = Base64.toUint8Array(loginSaltBs64);
const loginKey = await generate_hash(deleteUser.password, loginSalt)

Expand Down

0 comments on commit ac44cb5

Please sign in to comment.