From 475380f6eb6d86367000084212c90c0e57d7e212 Mon Sep 17 00:00:00 2001 From: ry0218 Date: Sat, 16 Nov 2024 06:04:35 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9D=BC=EA=B8=B0=20=EC=A1=B0=ED=9A=8C?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/RecordPage/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/pages/RecordPage/index.tsx b/src/pages/RecordPage/index.tsx index c943195..8c48366 100644 --- a/src/pages/RecordPage/index.tsx +++ b/src/pages/RecordPage/index.tsx @@ -21,6 +21,11 @@ export const RecordPage = () => { const { data: diaryData, loading: loadingDiaries, error: errorDiaries } = useGetDiariesByDate(formattedDate); const { data: messages, loading: loadingChat, error: errorChat } = useGetChatHistory("chat", formattedDateTime); + const diary_question = [ + "1. 오늘은 어떤 일이 있었나요?", + "2. 오늘의 감정은 어땠나요?", + "3. 오늘의 하루를 한 줄로 표현해보세요.", + ]; const navigate = useNavigate(); @@ -87,7 +92,7 @@ export const RecordPage = () => { {[0, 1, 2].map((i) => ( - {`${i + 1}. 오늘은 어떤 일이 있었나요?`} + {diary_question[i]}