Skip to content

Commit

Permalink
fixed verify
Browse files Browse the repository at this point in the history
  • Loading branch information
Aydan Pirani committed Jul 17, 2024
1 parent 156cf7d commit dd1684d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/services/attendee/attendee-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ attendeeRouter.get(
const attendeeData = AttendeeFilterValidator.parse(req.body);
const attendees = await Database.ATTENDEE.find(
attendeeData.in,
attendeeData.out.map(x => {x: 1})
attendeeData.out.map((x) => {

Check failure on line 166 in src/services/attendee/attendee-router.ts

View workflow job for this annotation

GitHub Actions / lint

'x' is defined but never used
x: 1;

Check failure on line 167 in src/services/attendee/attendee-router.ts

View workflow job for this annotation

GitHub Actions / lint

'x:' is defined but never used
})
);

return res.status(StatusCodes.OK).json(attendees);
Expand Down

0 comments on commit dd1684d

Please sign in to comment.