Skip to content

Commit

Permalink
Feat: 마일리지 학기별 마법사 붙여 넣을 학기별 항목 불러오기 API 연결(#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
ohinhyuk committed Oct 11, 2023
1 parent 744dd75 commit 4683c0c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ export default function SemesterItemTransferList({
});
}, [lastSemester]);

React.useEffect(() => {
axiosInstance.get(`/api/mileage/semesters/${thisSemester}/items`).then((res) => {
setRight(res.data.list);
});
}, [thisSemester]);

return (
<Box sx={{ mb: '30px' }}>
<Box sx={{ display: 'flex', justifyContent: 'center' }}>
Expand Down

0 comments on commit 4683c0c

Please sign in to comment.