Skip to content

Commit

Permalink
feat: removed some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
abdinasir-Tman committed Mar 10, 2024
1 parent 31757d3 commit d2475a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export async function registerUser(req, res) {
}
// Hash the password before saving it
const hashedPassword = await hashPassword(password);
// Create a new user instance with the hashed password and save it to the database
// Create a new user instance and save it to the database
user = await prisma.user.create({
data: { email, password: hashedPassword },
});
Expand Down

0 comments on commit d2475a5

Please sign in to comment.