File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const PageTracker = () => {
3939 { path : "/mbti-result" , page : "바이럴 콘텐츠 결과" } ,
4040 { path : "/chat-recommend" , page : "대화주제추천" } ,
4141 { path : "/chat-tips" , page : "대화 꿀팁" } ,
42- { path : "/chat-temporature " , page : "대화 온도" }
42+ { path : "/chat-temperature " , page : "대화 온도" }
4343 ] ;
4444
4545 useEffect ( ( ) => {
@@ -89,7 +89,7 @@ const App = () => {
8989
9090 useEffect ( ( ) => {
9191 initGA ( ) ;
92- if ( parsedAuth ) checkSession ( ) ;
92+ if ( parsedAuth . accessToken ) checkSession ( ) ;
9393 } , [ ] ) ;
9494
9595 return (
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const ChatTemperature = () => {
1616 const [ temperature , setTemperature ] = useState ( "" ) ;
1717
1818 useEffect ( ( ) => {
19- const getTemporature = async ( ) => {
19+ const getTemperature = async ( ) => {
2020 try {
2121 const res = await instance . get < TemperatureResponse > (
2222 `/api/addition/temperature/${ conversationId } `
@@ -27,7 +27,7 @@ const ChatTemperature = () => {
2727 }
2828 } ;
2929
30- getTemporature ( ) ;
30+ getTemperature ( ) ;
3131 } , [ ] ) ;
3232
3333 return (
You can’t perform that action at this time.
0 commit comments