diff --git a/src/modules/chatbot/components/conversation-box.vue b/src/modules/chatbot/components/conversation-box.vue index 9e3181e..704b672 100644 --- a/src/modules/chatbot/components/conversation-box.vue +++ b/src/modules/chatbot/components/conversation-box.vue @@ -7,14 +7,12 @@ import { useChatStore } from "src/stores/message-store"; const text = ref(''); const { messages } = useChatStore(); - const { sendMessage } = useChatApi(); + const handleSend = async () => { - console.log(`'handleSend' ${text.value}`); await sendMessage(text.value); text.value = ''; }; -