3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 12:25:02 +00:00

Fix tslint errors

This commit is contained in:
Dragory 2020-01-12 12:04:20 +02:00
parent 7f4529ce93
commit 1ae84afb12
2 changed files with 3 additions and 3 deletions

View file

@ -22,9 +22,9 @@ export const AuthStore: Module<AuthState, RootState> = {
await dispatch("setApiKey", storedKey);
return;
}
} catch (e) {}
} catch (e) {} // tslint:disable-line
console.log("Unable to validate key, removing from localStorage");
console.log("Unable to validate key, removing from localStorage"); // tslint:disable-line
localStorage.removeItem("apiKey");
}