Skip to content

Commit

Permalink
refactor: remove unused logging
Browse files Browse the repository at this point in the history
  • Loading branch information
faiq-naufal committed May 30, 2024
1 parent fa9b61f commit 2ba0103
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions app/_features/event/components/event-past-dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,8 @@ function ParticipantTable({ eventID }: { eventID: string | number }) {
};

fetchParticipants();
console.log();
}, [eventID, limit, page]);

useEffect(() => {
console.log(participants);
}, [participants]);

const nextPage = useCallback(() => {
setPage((prev) => prev + 1);
}, []);
Expand Down

0 comments on commit 2ba0103

Please sign in to comment.