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);