Skip to content
Snippets Groups Projects
Commit e5984c77 authored by Wo-ogie's avatar Wo-ogie
Browse files

fix: 참가자 중복 생성 시 의도한대로 에러가 발생하지 않는 문제 수정

parent 32293490
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ exports.createParticipant = async (req, res, next) => {
reqName,
);
if (existingParticipant) {
throw createParticipantIsAlreadyExistError;
throw createParticipantIsAlreadyExistError();
}
let passwordEncrypted = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment