Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiramTadepalli committed Nov 18, 2024
1 parent b0e8da0 commit 717c7ae
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/search/Filters/filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ const Filters = ({
primary="Select All"
/>
</MenuItem>

{/* recent sessions -- last <recentSemesters.length> long-semesters from current semester*/}
<MenuItem className="h-10 items-center" value="recent">
<Checkbox
Expand All @@ -302,7 +302,11 @@ const Filters = ({

{/* indiv options */}
{academicSessions.map((session) => (
<MenuItem className="h-10 items-center" key={session} value={session}>
<MenuItem
className="h-10 items-center"
key={session}
value={session}
>
<Checkbox checked={chosenSessions.includes(session)} />
<ListItemText primary={displayAcademicSessionName(session)} />
</MenuItem>
Expand Down

0 comments on commit 717c7ae

Please sign in to comment.