diff --git a/app/components/@settings/core/constants.ts b/app/components/@settings/core/constants.ts index a8f3798..db333f5 100644 --- a/app/components/@settings/core/constants.ts +++ b/app/components/@settings/core/constants.ts @@ -54,7 +54,7 @@ export const DEFAULT_TAB_CONFIG = [ { id: 'mcp', visible: true, window: 'user' as const, order: 7 }, { id: 'profile', visible: true, window: 'user' as const, order: 8 }, { id: 'service-status', visible: true, window: 'user' as const, order: 9 }, + { id: 'settings', visible: true, window: 'user' as const, order: 10 }, // User Window Tabs (In dropdown, initially hidden) - { id: 'settings', visible: false, window: 'user' as const, order: 10 }, ]; diff --git a/app/components/chat/Chat.client.tsx b/app/components/chat/Chat.client.tsx index 70d5444..ec0abf4 100644 --- a/app/components/chat/Chat.client.tsx +++ b/app/components/chat/Chat.client.tsx @@ -29,7 +29,6 @@ import type { TextUIPart, FileUIPart, Attachment } from '@ai-sdk/ui-utils'; import { useMCPStore } from '~/lib/stores/mcp'; import type { LlmErrorAlertType } from '~/types/actions'; import type { TextUIPart, FileUIPart, Attachment } from '@ai-sdk/ui-utils'; -import { useMCPStore } from '~/lib/stores/mcp'; const toastAnimation = cssTransition({ enter: 'animated fadeInRight',