Skip to content

Commit

Permalink
#326 fix: 출석여부 수정 api 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
misung-dev committed Sep 22, 2024
1 parent b975790 commit b9244b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apis/attendance.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const getAttendanceList = async (eventId) => {

export const updateAttendanceList = async (eventId, body) => {
const { data } = await axiosInstance.put(
`/api/v1/attendance/list/${eventId}`,
`/api/v1/attendance/manage/${eventId}`,
body,
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export default function DashboardAttendeePage() {
const handleDownload = async () => {
try {
const response = await axiosInstance.get(
`/api/v1/attendance/list/${eventId}`,
`/api/v1/attendancelist/${eventId}`,
{ responseType: 'blob' },
);

Expand Down

0 comments on commit b9244b8

Please sign in to comment.