diff --git a/server/static/dashboard.html b/server/static/dashboard.html
index 4efb5df..ba16732 100644
--- a/server/static/dashboard.html
+++ b/server/static/dashboard.html
@@ -794,7 +794,7 @@
}
async function disconnectMachine(sessionId, machineName) {
- if (!confirm("Disconnect " + machineName + "?\\n\\nThis will end the remote session.")) return;
+ if (!confirm("Disconnect " + machineName + "?\n\nThis will end the remote session.")) return;
try {
const response = await fetch("/api/sessions/" + sessionId, { method: "DELETE" });
if (response.ok) {