Removed console.log, webUI password entering should be working now

This commit is contained in:
subnub
2020-05-15 14:43:11 -04:00
parent 794ce8a85e
commit 705e76ae9d
-4
View File
@@ -15,8 +15,6 @@ formElement.addEventListener("submit", async (e) => {
const data = {password: value}
console.log("Full URL", fullURL + "/submit")
axios.post(fullURL + "/submit", data).then(() => {
inputElement.value = "";
@@ -25,6 +23,4 @@ formElement.addEventListener("submit", async (e) => {
}).catch((err) => {
console.log("Error", err);
});
})