Skip to content

Commit

Permalink
chore(user) : 방과후 수강 신청 에러 메시지
Browse files Browse the repository at this point in the history
  • Loading branch information
BaekSeungHa committed Nov 15, 2023
1 parent 6f90159 commit 80fd5ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/user/src/components/Register/RegistList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ const RegistList = ({ grade }: Props) => {
`${data.lectureName} 수강 신청 성공`
);
},
onError: () => {
CheckinToast.showError("방과후 수강 신청 실패");
onError: (data: any) => {
CheckinToast.showError(data.response.data.message);
},
})
}
Expand Down

2 comments on commit 80fd5ba

@vercel
Copy link

@vercel vercel bot commented on 80fd5ba Nov 15, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

admin-checkin – ./apps/admin

admin-checkin-git-main-checkins-projects.vercel.app
admin-checkin-checkins-projects.vercel.app
admin.checkin.dgsw.kr

@vercel
Copy link

@vercel vercel bot commented on 80fd5ba Nov 15, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

teacher-checkin – ./apps/teacher

teacher.checkin.dgsw.kr
teacher-checkin-git-main-checkins-projects.vercel.app
teacher-checkin-checkins-projects.vercel.app

Please sign in to comment.