Skip to content

Commit

Permalink
Removed unwanted filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajoy10 committed Apr 7, 2024
1 parent 5d49910 commit 2ed92ba
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/components/Certificates/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,7 @@ export default class Certificates extends React.Component {
{
this.state.events.map((event, i) => (
this.state.teams[event].map((team, j) => (
team.members.filter((member)=>{
console.log(member)
return true;
}).map((member, k) => (<tr key={`${i}.${j}.${k}`}>
team.members.map((member, k) => (<tr key={`${i}.${j}.${k}`}>
<td>{member.registrationID}</td>
<td>{member.name}</td>
<td>{event}</td>
Expand Down

0 comments on commit 2ed92ba

Please sign in to comment.