diff --git a/app/javascript/dashboard/components/copilot/CopilotContainer.vue b/app/javascript/dashboard/components/copilot/CopilotContainer.vue index 9a1918925..1fed0e861 100644 --- a/app/javascript/dashboard/components/copilot/CopilotContainer.vue +++ b/app/javascript/dashboard/components/copilot/CopilotContainer.vue @@ -103,7 +103,7 @@ onMounted(() => { }); const handleClose = () => { - store.dispatch('uiState/set', 'isCopilotSidebarOpen', false); + store.dispatch('uiState/set', { isCopilotSidebarOpen: false }); }; watchEffect(() => { diff --git a/app/javascript/dashboard/components/widgets/conversation/ConversationBox.vue b/app/javascript/dashboard/components/widgets/conversation/ConversationBox.vue index bea3670e8..7130e61c0 100644 --- a/app/javascript/dashboard/components/widgets/conversation/ConversationBox.vue +++ b/app/javascript/dashboard/components/widgets/conversation/ConversationBox.vue @@ -85,7 +85,7 @@ export default {