Skip to content

Commit

Permalink
fix: 임의로 api get 통신 삭제
Browse files Browse the repository at this point in the history
fix: 임의로 api get 통신 삭제
  • Loading branch information
urimeee authored Dec 29, 2024
2 parents 25306f6 + f7339b4 commit f608e48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ScheduleCard/ScheduleCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ const ScheduleCard = () => {

const data = await response.json();
console.log(response);
setScheduleList(data);
// setScheduleList(data);
} catch (e) {
console.log(e);
}
};

useEffect(() => {
getSchedules();
// getSchedules();
}, []);

return (
Expand Down

0 comments on commit f608e48

Please sign in to comment.