From 6c3b61428547dc44f9e5be3d8e99147c69a40d4c Mon Sep 17 00:00:00 2001 From: junjeong Date: Wed, 7 May 2025 18:23:31 +0900 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=ED=99=88=ED=8E=98=EC=9D=B4=EC=A7=80?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EC=84=B8?= =?UTF-8?q?=EC=85=98=EC=9D=B4=20=EB=A7=8C=EB=A3=8C=EB=90=98=EC=97=88?= =?UTF-8?q?=EC=8A=B5=EB=8B=88=EB=8B=A4.=20=EB=B2=84=ED=8D=BC=EB=A7=81=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 683a5af..97bb696 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -89,7 +89,7 @@ const App = () => { useEffect(() => { initGA(); - if (parsedAuth) checkSession(); + if (parsedAuth.accessToken) checkSession(); }, []); return ( From 6e15042f084260dd8db910c505f91e6798bd2684 Mon Sep 17 00:00:00 2001 From: junjeong Date: Wed, 7 May 2025 18:27:56 +0900 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20temporature=20->=20temperature=20?= =?UTF-8?q?=EC=98=A4=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ChatTemperature.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/ChatTemperature.tsx b/src/pages/ChatTemperature.tsx index abd74a9..8037eaa 100644 --- a/src/pages/ChatTemperature.tsx +++ b/src/pages/ChatTemperature.tsx @@ -16,7 +16,7 @@ const ChatTemperature = () => { const [temperature, setTemperature] = useState(""); useEffect(() => { - const getTemporature = async () => { + const getTemperature = async () => { try { const res = await instance.get( `/api/addition/temperature/${conversationId}` @@ -27,7 +27,7 @@ const ChatTemperature = () => { } }; - getTemporature(); + getTemperature(); }, []); return ( From aa8ba8c126869cc72ed533ce84cc0ae8c29e0f59 Mon Sep 17 00:00:00 2001 From: junjeong Date: Thu, 8 May 2025 21:16:12 +0900 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20line=2042=20=EC=98=A4=ED=83=80=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 97bb696..fc378bd 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -39,7 +39,7 @@ const PageTracker = () => { { path: "/mbti-result", page: "바이럴 콘텐츠 결과" }, { path: "/chat-recommend", page: "대화주제추천" }, { path: "/chat-tips", page: "대화 꿀팁" }, - { path: "/chat-temporature", page: "대화 온도" } + { path: "/chat-temperature", page: "대화 온도" } ]; useEffect(() => {