From 44fcd881fc409eb777fe8ffe13166b57ecb8a2f4 Mon Sep 17 00:00:00 2001 From: Kristy Fournier <124598538+kristy-fournier@users.noreply.github.com> Date: Mon, 3 Mar 2025 10:17:42 -0500 Subject: [PATCH] Changed error message --- Client/scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client/scripts.js b/Client/scripts.js index 6338825..3f43bbc 100644 --- a/Client/scripts.js +++ b/Client/scripts.js @@ -23,7 +23,7 @@ async function getFromServer(bodyInfo, source="") { return await data; } catch(e) { if (e == "TypeError: Failed to fetch"){ - alertText("error: NoConnect to Server (is the ip set?)") + alertText("error: Can't Connect to Server (is the ip set?)") } else { alertText("error: " + e) }