From 324e1376dc5c360dec4fb2de370d64be1f1ceee2 Mon Sep 17 00:00:00 2001 From: Jack Date: Mon, 8 Jun 2020 23:13:17 +0100 Subject: [PATCH] fixed #129 --- public/js/account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/account.js b/public/js/account.js index d1f39a489..37a437841 100644 --- a/public/js/account.js +++ b/public/js/account.js @@ -40,7 +40,7 @@ function signIn() { let password = $(".pageLogin .login input")[1].value; firebase.auth().signInWithEmailAndPassword(email, password).then(e => { - changePage('account'); + changePage('test'); }).catch(function(error) { showNotification(error.message, 5000); $(".pageLogin .preloader").addClass('hidden');