feat: remove unused sendMessage function in client layout

This commit is contained in:
SauceyRed 2025-05-29 22:22:48 +02:00
parent 53687a0ec3
commit a92c74edc9
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462

View file

@ -80,14 +80,6 @@ const members = [
}
];
function sendMessage(e: Event) {
e.preventDefault();
const textInput = document.getElementById("message-box-input") as HTMLInputElement;
const text = textInput.value;
console.log("MESSAGE SENT!!!");
console.log("text:", text);
}
</script>
<style>