3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +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

@ -145,7 +145,7 @@ export class GuildSavedMessages extends BaseGuildRepository {
try {
await this.messages.insert(data);
} catch (e) {
console.warn(e);
console.warn(e); // tslint:disable-line
return;
}

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");
}