From 48f61daa65d6625e90c043f12203b8c0e43a96d4 Mon Sep 17 00:00:00 2001
From: kiyeong <kjr07145@gmail.com>
Date: Thu, 5 Dec 2024 01:17:39 +0900
Subject: [PATCH] =?UTF-8?q?chore:=20=EB=A1=9C=EB=94=A9=20=EC=A4=91=20?=
 =?UTF-8?q?=EB=AC=B8=EA=B5=AC=20=EC=88=98=EC=A0=95,=20=EC=BB=B4=ED=8F=AC?=
 =?UTF-8?q?=EB=84=8C=ED=8A=B8=20=EC=9C=84=EC=B9=98=20=EC=A1=B0=EC=A0=88?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 index.html                             | 2 +-
 src/pages/MainPage/Sidebar/Sidebar.tsx | 2 +-
 src/pages/MainPage/UserChat.tsx        | 6 +++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/index.html b/index.html
index 0b106d8..a37302b 100644
--- a/index.html
+++ b/index.html
@@ -13,7 +13,7 @@
     <meta name="theme-color" content="#000000" />
     <meta
       name="description"
-      content="경북대학교 컴퓨터학부 학사 정보 및 AI 챗봇 서비스. 학과 관련 문의사항을 챗봇과 대화로 해결하세요."
+      content="경북대학교 컴퓨터학부 학사 정보 및 AI 챗봇 서비스. 학과 관련 문의사항을 챗봇을 통해 간편하게 해결해보세요!"
     />
     <meta
       name="keywords"
diff --git a/src/pages/MainPage/Sidebar/Sidebar.tsx b/src/pages/MainPage/Sidebar/Sidebar.tsx
index e85d433..9ada891 100644
--- a/src/pages/MainPage/Sidebar/Sidebar.tsx
+++ b/src/pages/MainPage/Sidebar/Sidebar.tsx
@@ -467,7 +467,7 @@ export const Sidebar: React.FC<SidebarProps> = ({ isOpen, toggleSidebar }) => {
                 mr={"auto"}
                 spacing="10px"
                 w={{ base: "200px", md: "250px" }}
-                minH={{ base: "100px", md: "200px" }}
+                minH="250px"
               >
                 {histories.length > 0 ? (
                   histories.map((history) => (
diff --git a/src/pages/MainPage/UserChat.tsx b/src/pages/MainPage/UserChat.tsx
index dd136cf..3ef9783 100644
--- a/src/pages/MainPage/UserChat.tsx
+++ b/src/pages/MainPage/UserChat.tsx
@@ -213,7 +213,7 @@ const UserChat = () => {
         console.error("Error fetching history messages:", error);
       } finally {
         const elapsedTime = Date.now() - startTime; // 경과 시간 계산
-        const remainingTime = Math.max(2000 - elapsedTime, 0); // 최소 3초를 보장
+        const remainingTime = Math.max(2000 - elapsedTime, 0); // 최소 2초를 보장
 
         setTimeout(() => {
           setFetchingHistory(false); // 로딩 종료
@@ -299,8 +299,8 @@ const UserChat = () => {
           zIndex="2000" // 다른 요소 위로 오도록 설정
         >
           <Spinner size="xl" color="white" />
-          <Text color="white" fontSize={{ base: "lg", md: "xl" }} ml="4">
-            잠시만 기다려주세요! 챗봇이 준비 중입니다...
+          <Text color="white" fontSize={{ base: "xl", md: "3xl" }} ml="4">
+            챗봇의 전원을 키고 있습니다🤖
           </Text>
         </Box>
       )}