chore: remove req.body print

This commit is contained in:
Joshua
2024-11-05 17:38:27 +05:30
committed by GitHub
parent 34055abcc1
commit c43e56bc17

View File

@@ -15,7 +15,7 @@ interface AuthenticatedRequest extends Request {
router.post('/register', async (req, res) => {
console.log('Received request at /auth/register');
console.log('Received body:', req.body);
try {
const { email, password } = req.body