From f084dc77c8429080fc0cb606a78aea4b8e5215d1 Mon Sep 17 00:00:00 2001 From: aakashb95 Date: Thu, 18 Dec 2025 14:22:23 +0530 Subject: [PATCH] hide sidebar captain setting --- .../dashboard/components-next/sidebar/Sidebar.vue | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/app/javascript/dashboard/components-next/sidebar/Sidebar.vue b/app/javascript/dashboard/components-next/sidebar/Sidebar.vue index 6833dedec..1df6c4945 100644 --- a/app/javascript/dashboard/components-next/sidebar/Sidebar.vue +++ b/app/javascript/dashboard/components-next/sidebar/Sidebar.vue @@ -577,12 +577,13 @@ const menuItems = computed(() => { icon: 'i-lucide-credit-card', to: accountScopedRoute('billing_settings_index'), }, - { - name: 'Settings Captain', - label: t('SIDEBAR.CAPTAIN_AI'), - icon: 'i-lucide-sparkles', - to: accountScopedRoute('captain_settings_index'), - }, + // Hidden until we have a way to manage captain settings + // { + // name: 'Settings Captain', + // label: t('SIDEBAR.CAPTAIN_AI'), + // icon: 'i-lucide-sparkles', + // to: accountScopedRoute('captain_settings_index'), + // }, ], }, ];