Skip to content

Commit

Permalink
Platform is so back
Browse files Browse the repository at this point in the history
  • Loading branch information
Clue88 committed Dec 31, 2023
1 parent 3b573c3 commit 25de9c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/Team/Teams.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ interface ITeams {
const TEAM_LEAD = 'Team Lead'

const leadsFirst = (members: IMember[]): IMember[] => {
if (members === null) {
return []
}

return members.sort((m1, m2): number => {
const isLead1 = m1.roles.indexOf(TEAM_LEAD) !== -1
const isLead2 = m2.roles.indexOf(TEAM_LEAD) !== -1
Expand Down
4 changes: 4 additions & 0 deletions src/json/teams.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,9 @@
{
"name": "Penn Mobile",
"description": "Penn Mobile is a tight-knit team of developers and designers. We can usually be found debugging constraint layouts, trying to figure out why dining hours broke again, or attempting to figure out how the hell caching works. We hope you love using our app as much as we love working on it!"
},
{
"name": "Platform",
"description": "Yo, we're the Platform Team! We consolidate all the software that Penn Labs builds by integrating our products together and making data more accessible to developers. Our goal is to help create the Penn Labs ecosystem and to help the organization scale quickly."
}
]

0 comments on commit 25de9c0

Please sign in to comment.