Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/App.tsx
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

line 42 오타도 수정해주세요!

Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const App = () => {

useEffect(() => {
initGA();
if (parsedAuth) checkSession();
if (parsedAuth.accessToken) checkSession();
}, []);

return (
Expand Down
4 changes: 2 additions & 2 deletions src/pages/ChatTemperature.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const ChatTemperature = () => {
const [temperature, setTemperature] = useState("");

useEffect(() => {
const getTemporature = async () => {
const getTemperature = async () => {
try {
const res = await instance.get<TemperatureResponse>(
`/api/addition/temperature/${conversationId}`
Expand All @@ -27,7 +27,7 @@ const ChatTemperature = () => {
}
};

getTemporature();
getTemperature();
}, []);

return (
Expand Down