From 010b7336cd67472860562b5de5d1e77374bdf78f Mon Sep 17 00:00:00 2001 From: Adhityaa Chandrasekar Date: Thu, 24 Jan 2019 06:12:44 -0500 Subject: [PATCH] signup.js: fix document.location typo I have no idea what that was. --- frontend/js/signup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/js/signup.js b/frontend/js/signup.js index 2c2b2bc..857cdc3 100644 --- a/frontend/js/signup.js +++ b/frontend/js/signup.js @@ -35,7 +35,7 @@ } if (resp.confirmEmail) { - document.locatidocumenton = global.origin + "/confirm-email"; + document.location = global.origin + "/confirm-email"; } else { document.location = global.origin + "/login?signedUp=true"; }