diff --git a/src/components/Sidebar/chat/ChatInputx.tsx b/src/components/Sidebar/chat/ChatInput.tsx similarity index 100% rename from src/components/Sidebar/chat/ChatInputx.tsx rename to src/components/Sidebar/chat/ChatInput.tsx diff --git a/src/components/Sidebar/chat/ChatListx.tsx b/src/components/Sidebar/chat/ChatList.tsx similarity index 100% rename from src/components/Sidebar/chat/ChatListx.tsx rename to src/components/Sidebar/chat/ChatList.tsx diff --git a/src/components/Sidebar/chat/index.tsx b/src/components/Sidebar/chat/index.tsx index 68707f9e..c249a15a 100644 --- a/src/components/Sidebar/chat/index.tsx +++ b/src/components/Sidebar/chat/index.tsx @@ -1,6 +1,6 @@ import { useEffect } from "react"; -import ChatList from "./ChatListx"; -import { SidebarInput } from "./ChatInputx"; +import ChatList from "./ChatList"; +import { SidebarInput } from "./ChatInput"; import { useChatCompletion } from "../../../hooks/useChatCompletion"; import { SYSTEM_PROMPT } from "../../../config/prompts"; import { Settings } from "../../../config/settings";