diff --git a/src/components/BotList.vue b/src/components/BotList.vue index 19952368..cae39841 100644 --- a/src/components/BotList.vue +++ b/src/components/BotList.vue @@ -28,10 +28,8 @@ import LoginModal from '@/views/LoginModal.vue'; import BotEntry from '@/components/BotEntry.vue'; import BotRename from '@/components/BotRename.vue'; -import StoreModules from '@/store/storeSubModules'; import { defineComponent, ref } from '@vue/composition-api'; -import { useNamespacedActions } from 'vuex-composition-helpers'; import { useBotStore } from '@/stores/ftbotwrapper'; export default defineComponent({ @@ -43,7 +41,6 @@ export default defineComponent({ setup() { const botStore = useBotStore(); - const { selectBot } = useNamespacedActions(StoreModules.ftbot, ['selectBot']); const editingBots = ref([]); const editBot = (botId: string) => { @@ -62,7 +59,6 @@ export default defineComponent({ return { botStore, - selectBot, editingBots, editBot, stopEditBot, diff --git a/src/components/charts/CandleChartContainer.vue b/src/components/charts/CandleChartContainer.vue index 530cdbcd..1834e7d4 100644 --- a/src/components/charts/CandleChartContainer.vue +++ b/src/components/charts/CandleChartContainer.vue @@ -46,7 +46,7 @@
@@ -89,7 +89,7 @@