diff --git a/pages/teams.tsx b/pages/teams.tsx index 2c85d1f..cb138b6 100644 --- a/pages/teams.tsx +++ b/pages/teams.tsx @@ -172,13 +172,15 @@ export default function ViewTeams(props: SSRDataAuth["props"]) { {emptyMessage} - {teams.sort((a, b) => +a.id - +b.id).map((team, idx) => ( - - ))} + {teams + .sort((a, b) => +a.id - +b.id) + .map((team, idx) => ( + + ))}