Skip to content

Commit

Permalink
style: apply prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
sjuuun authored Nov 14, 2023
1 parent 06bfea2 commit dc3f7e3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/routes/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,7 @@ router.post('/password', async (req, res, next) => {
return res.status(400).send('비밀번호는 12자 이하이어야 합니다.');
}

const encrypted_password = await bcrypt.hash(
password,
saltRounds,
);
const encrypted_password = await bcrypt.hash(password, saltRounds);

await User.update(
{
Expand Down

0 comments on commit dc3f7e3

Please sign in to comment.