Skip to content

Commit 05b6591

Browse files
committed
#2137 updated comments with todos
1 parent dd1aa3c commit 05b6591

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/frontend/src/pages/AdminToolsPage/AdminToolsAttendeeDesignReviewModal.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ const AttendeeDesignReviewModal: React.FC<AttendeeDesignReviewModalProps> = ({ o
3535
borderBottom: '2px solid white'
3636
};
3737

38-
// to be deleted later, this is just stub data for filter options
38+
// TODO: to be deleted later, this is just stub data for filter options
3939
const teams = ['All', 'Team A', 'Team B', 'Team C'];
4040

41-
// Stub data for team members, replace with dynamic data here
41+
// TODO: Stub data for team members, replace with dynamic data here
4242
const teamMembers = [
4343
{ name: 'Batman', reviewsAttended: 2, missedReviews: 4 },
4444
{ name: 'Superman', reviewsAttended: 4, missedReviews: 1 }
4545
];
4646

47-
// Filtering team members based on search query here
47+
// TODO: Filtering team members based on search query here
4848
const filteredMembers = teamMembers.filter((member) => member.name.toLowerCase().includes(searchQuery.toLowerCase()));
4949

50-
// Filtering for teams backend logic comes here
50+
// TODO: Filtering for teams backend logic comes here
5151
const handleTeamChange = (event: SelectChangeEvent) => {
5252
setSelectedTeam(event.target.value as string);
5353
};
@@ -87,7 +87,7 @@ const AttendeeDesignReviewModal: React.FC<AttendeeDesignReviewModalProps> = ({ o
8787
{team}
8888
</MenuItem>
8989
))}
90-
{/* we'll have to change this here as well for backend logic, above is just a stub implementation. */}
90+
{/* TODO: we'll have to change this here as well for backend logic, above is just a stub implementation. */}
9191
</Select>
9292
</FormControl>
9393
<Table>

0 commit comments

Comments
 (0)