Skip to content

Commit 934f569

Browse files
authored
[fix] gmail validation removed
[fix] gmail validation removed
2 parents fce0f39 + 06257d8 commit 934f569

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dist/user/user.controller/user.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const sendMailCodeController = async (
1515
const mail = req.body.mail as string;
1616

1717
// 상명대 이메일 형식 검증 && gmail 이메일 형식 검증
18-
if(!emailValidation(mail) && !gmailValidation(mail)) {
18+
if(!emailValidation(mail)) {
1919
return res.status(403).json({ message: '이메일 형식이 올바르지 않습니다.' });
2020
}
2121

0 commit comments

Comments
 (0)