Skip to content

Commit

Permalink
chore: 로딩 중 문구 수정, 컴포넌트 위치 조절
Browse files Browse the repository at this point in the history
  • Loading branch information
gogumalatte committed Dec 4, 2024
1 parent afd2713 commit 48f61da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="경북대학교 컴퓨터학부 학사 정보 및 AI 챗봇 서비스. 학과 관련 문의사항을 챗봇과 대화로 해결하세요."
content="경북대학교 컴퓨터학부 학사 정보 및 AI 챗봇 서비스. 학과 관련 문의사항을 챗봇을 통해 간편하게 해결해보세요!"
/>
<meta
name="keywords"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/MainPage/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) => (
Expand Down
6 changes: 3 additions & 3 deletions src/pages/MainPage/UserChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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); // 로딩 종료
Expand Down Expand Up @@ -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>
)}
Expand Down

0 comments on commit 48f61da

Please sign in to comment.