Skip to content

Commit

Permalink
ran linter
Browse files Browse the repository at this point in the history
  • Loading branch information
pm3512 committed Jan 30, 2024
1 parent e866556 commit b958eb0
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pages/teams.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,13 +172,15 @@ export default function ViewTeams(props: SSRDataAuth<TeamData>["props"]) {
{emptyMessage}
<table className={styles.tableData}>
<tbody>
{teams.sort((a, b) => +a.id - +b.id).map((team, idx) => (
<TeamTableEntry
team={team}
key={idx}
callback={checkJoinErrorCallback}
/>
))}
{teams
.sort((a, b) => +a.id - +b.id)
.map((team, idx) => (
<TeamTableEntry
team={team}
key={idx}
callback={checkJoinErrorCallback}
/>
))}
</tbody>
</table>
</FloatingDiv>
Expand Down

0 comments on commit b958eb0

Please sign in to comment.