From 3712fb332bdf7cc94a07a973b54e9ee5f96faf4e Mon Sep 17 00:00:00 2001 From: JBB0807 <104856796+JBB0807@users.noreply.github.com> Date: Mon, 5 May 2025 23:52:00 -0700 Subject: [PATCH] bug fix for qr code authentication --- assignment-service/routes/StudentRouter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assignment-service/routes/StudentRouter.js b/assignment-service/routes/StudentRouter.js index 5715f52..edb1f57 100644 --- a/assignment-service/routes/StudentRouter.js +++ b/assignment-service/routes/StudentRouter.js @@ -49,7 +49,7 @@ studentRouter.post("/verify", async (req, res) => { const isPasswordValid = await bcrypt.compare( password, - response.data[0].passwordhash + response.data[0].passwordhash ); console.log("Password validation result:", isPasswordValid);