nvm this fucked shit up

This commit is contained in:
Glitchy 2025-06-06 20:52:42 +00:00
parent 8128b223c0
commit ac05692c6a
4 changed files with 3 additions and 38 deletions

View file

@ -79,15 +79,3 @@ textarea.addEventListener("input", () => {
}
}, 500);
});
const socket = io();
// Listen for updates
socket.on('board_update', data => {
if (true && data.content !== last) {
textarea.value = data.content;
last = data.content;
status.textContent = "Updated from server";
}
});