changed code formatting

This commit is contained in:
2026-05-18 18:11:46 +02:00
parent 3832aca12c
commit 8932f5d004
5 changed files with 9 additions and 11 deletions
-1
View File
@@ -28,7 +28,6 @@ export const confirmUser = async (username) => {
]);
if (rows.length > 0) {
console.log(rows);
const { first_name, last_name } = rows[0];
const fullname = first_name + " " + last_name;
-2
View File
@@ -11,8 +11,6 @@ router.post("/new-entry", async (req, res) => {
if (!result.success) {
return res.status(500).json({ message: "Form Data Invalid" });
}
console.log(req.body);
console.log(username);
res.sendStatus(204);
});