Skip to content

Commit

Permalink
remove extraneous logging
Browse files Browse the repository at this point in the history
  • Loading branch information
parseccentric committed Apr 1, 2022
1 parent 471773b commit 1351008
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/service/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ const login = async (email, password) => {
* @param {string} password
*/
const resetUser = async (user_id, firstName, lastName, email, password) => {
console.log(`${[firstName, lastName, email, password, user_id]}`)
const results = await pool.execute(userQuery.resetUser, [firstName, lastName, email, password, user_id]);
const success = results[0];
if (!success.changedRows) {
Expand Down

0 comments on commit 1351008

Please sign in to comment.