diff --git a/layouts/client.vue b/layouts/client.vue index ae749e3..6c2a49b 100644 --- a/layouts/client.vue +++ b/layouts/client.vue @@ -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); -} -