79274722

Date: 2024-12-12 10:31:08
Score: 1.5
Natty:
Report link

instead of

return res.status(401).json({
        error: "User must sign in"
      })

write

    res.status(401).json({
            error: "User must sign in"
          });
return;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohammadreza Azizi