summary refs log tree commit diff
path: root/src-slowcord/login/public/js/handler.js
diff options
context:
space:
mode:
Diffstat (limited to 'src-slowcord/login/public/js/handler.js')
-rw-r--r--src-slowcord/login/public/js/handler.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/src-slowcord/login/public/js/handler.js b/src-slowcord/login/public/js/handler.js
index 68a656b4..2d7b164b 100644
--- a/src-slowcord/login/public/js/handler.js
+++ b/src-slowcord/login/public/js/handler.js
@@ -29,13 +29,12 @@ const handleSubmit = async (path, body) => {
 	}
 
 	// Very fun error message here lol
-	const error =
-		json.errors
-			? Object.values(json.errors)[0]._errors[0].message
-			: (
-				json.captcha_key ? "Captcha required" : json.message
-			);
+	const error = json.errors
+		? Object.values(json.errors)[0]._errors[0].message
+		: json.captcha_key
+		? "Captcha required"
+		: json.message;
 
 	failureMessage.innerHTML = error;
 	failureMessage.style.display = "block";
-};
\ No newline at end of file
+};