git ignore upd

This commit is contained in:
rosetta
2026-01-30 05:05:44 +02:00
parent 83f38dc63f
commit d1a5c37ea8
2 changed files with 2 additions and 4 deletions

3
.gitignore vendored
View File

@@ -3,4 +3,5 @@ dist
out
package-lock.json
LICENSE
*.code-workspace
*.code-workspace
.DS_Store

View File

@@ -62,14 +62,11 @@ export function AccountProvder(props : AccountProviderProps){
}, [accounts, loaded]);
const loadLastLoginDice = () => {
console.info("2");
let publicKey = localStorage.getItem("last_logined_account");
if(!publicKey && accounts.length <= 0){
console.info("1");
return;
}
if(!publicKey && accounts.length > 0){
console.info(accounts);
setLoginDice(accounts[0]);
return;
}