removed nuisance print

This commit is contained in:
2025-11-17 11:57:03 -05:00
parent 1df4893c67
commit 750ee5f02c

View File

@@ -28,7 +28,6 @@ eventRouter.get('/', async (req: Request, res: Response) => {
eventRouter.get('/:id', async (req: Request, res: Response) => {
try {
let out = await getCourseEventDetails(Number(req.params.id));
console.log(out);
res.status(200).json(out);
} catch (error) {
console.error('failed to fetch report', error);