fix some anti pattern stuff

This commit is contained in:
Mystikfluu
2023-02-10 19:24:05 +01:00
parent 0a46eeee9f
commit 3254d01581
21 changed files with 130 additions and 151 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ async function login() {
let passfield = document.getElementById("pass")
function passkeydown(e) {
if(e.code == "Enter") {
if(e.code === "Enter") {
login()
}
}