fix: make user const

This commit is contained in:
httpjamesm 2024-02-08 15:59:56 -05:00
parent 5b1eb3df9b
commit d02a0611c7
No known key found for this signature in database

View file

@ -38,7 +38,7 @@ const AccountHandoff = () => {
throw new Error('token not found');
}
let user = getData(LS_KEYS.USER) || {};
const user = getData(LS_KEYS.USER) || {};
user.token = token;
setData(LS_KEYS.USER, user);