diff --git a/gui/src/components/chat.vue b/gui/src/components/chat.vue index f8b974ed..39658766 100644 --- a/gui/src/components/chat.vue +++ b/gui/src/components/chat.vue @@ -3,11 +3,6 @@ import chat_conversations from "./chat_conversations.vue"; import chat_messages from "./chat_messages.vue"; import chat_new_message from "./chat_new_message.vue"; - - - - - import { setActivePinia } from "pinia"; import pinia from "../store/index"; setActivePinia(pinia); @@ -15,14 +10,6 @@ setActivePinia(pinia); import { useChatStore } from "../store/chatStore.js"; const chat = useChatStore(pinia); - - - - - - - - import { Chart as ChartJS, CategoryScale, @@ -38,7 +25,6 @@ import { Bar } from "vue-chartjs"; import { ref, computed } from "vue"; import annotationPlugin from "chartjs-plugin-annotation"; - ChartJS.register( CategoryScale, LinearScale, @@ -112,19 +98,10 @@ const beaconHistogramData = computed(() => ({ }, ], })); - - - - - - - -