From c18ced5dcfd721394e2eac48d8ae4d56a9063034 Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Sun, 1 Mar 2026 11:12:37 +0300 Subject: [PATCH] =?UTF-8?q?Rename=20ApiKeySetup=20=E2=86=92=20APIKeySetup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components.d.ts | 1 + src/components/ChatPanel.vue | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components.d.ts b/components.d.ts index 920ce0af4..1bc37b06b 100644 --- a/components.d.ts +++ b/components.d.ts @@ -12,6 +12,7 @@ export {} declare module 'vue' { export interface GlobalComponents { ApiKeySetup: typeof import('./src/components/chat/ApiKeySetup.vue')['default'] + APIKeySetup: typeof import('./src/components/chat/APIKeySetup.vue')['default'] AppearanceSection: typeof import('./src/components/properties/AppearanceSection.vue')['default'] CanvasContextMenu: typeof import('./src/components/CanvasContextMenu.vue')['default'] ChatInput: typeof import('./src/components/chat/ChatInput.vue')['default'] diff --git a/src/components/ChatPanel.vue b/src/components/ChatPanel.vue index 72855542d..8e8a82035 100644 --- a/src/components/ChatPanel.vue +++ b/src/components/ChatPanel.vue @@ -2,7 +2,7 @@ import { ScrollAreaRoot, ScrollAreaScrollbar, ScrollAreaThumb, ScrollAreaViewport } from 'reka-ui' import { computed, nextTick, ref, watch } from 'vue' -import ApiKeySetup from '@/components/chat/ApiKeySetup.vue' +import APIKeySetup from '@/components/chat/APIKeySetup.vue' import ChatInput from '@/components/chat/ChatInput.vue' import ChatMessage from '@/components/chat/ChatMessage.vue' import { useAIChat } from '@/composables/use-chat' @@ -46,7 +46,7 @@ function handleStop() {