Skip to content

Commit

Permalink
Merge pull request #187 from cornell-dti/fix-no-checkin-filter
Browse files Browse the repository at this point in the history
fixed check-in filter on frontend
  • Loading branch information
JustKong13 authored Mar 6, 2024
2 parents b979fd2 + e50f03e commit 7d46282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/modules/Dashboard/Components/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const Dashboard = () => {
)
//Helper function to check if a given course has any groups without check-in emails
function hasUnsentCheckIns(c: Course) {
return c.groups.some((group) => !group.templateTimestamps['check-in'])
return c.groups.some((group) => !group.templateTimestamps['1check-in'])
}

//Helper function that returns true if the student doesn't have a no match email
Expand Down

0 comments on commit 7d46282

Please sign in to comment.