diff --git a/packages/views/teams/components/team-detail-page.tsx b/packages/views/teams/components/team-detail-page.tsx index e17b79c232..70a4683245 100644 --- a/packages/views/teams/components/team-detail-page.tsx +++ b/packages/views/teams/components/team-detail-page.tsx @@ -396,17 +396,21 @@ function GotoSection({ team }: { team: Team }) {

{t(($) => $.settings.goto)}

- {links.map((link) => ( - - - {link.label} - {link.value} - - ))} + {/* Equal-width cells, three across in the detail container; auto-fit + wraps them cleanly when the container narrows. */} +
+ {links.map((link) => ( + + + {link.label} + {link.value} + + ))} +
); }