bug fix for qr code authentication

This commit is contained in:
JBB0807 2025-05-05 23:52:00 -07:00
parent 7661e2daa2
commit 3712fb332b

View file

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