From AI:
There's no link to /teams in the UI. The sidebar nav (apps/web/components/dashboard/app-sidebar.tsx:50-68) lists Home, Broadcasts, Sequences, Contacts, Templates, Media, Transactional log, Suppressions, Organizations, and Settings — but not /teams. The team switcher only switches the active team (via /api/team/switch), it doesn't navigate to the page.
So currently users can only reach it by typing /teams in the URL bar after login.
To fix it, add an entry to navMain items in app-sidebar.tsx:50, e.g.:
{ url: "/teams", title: "Teams", icon: Users },
(then move Users icon usage or pick another icon since Contacts uses Users — e.g. Building/Boxes)
From AI:
There's no link to
/teamsin the UI. The sidebar nav (apps/web/components/dashboard/app-sidebar.tsx:50-68) lists Home, Broadcasts, Sequences, Contacts, Templates, Media, Transactional log, Suppressions, Organizations, and Settings — but not/teams. The team switcher only switches the active team (via/api/team/switch), it doesn't navigate to the page.So currently users can only reach it by typing
/teamsin the URL bar after login.To fix it, add an entry to
navMainitems inapp-sidebar.tsx:50, e.g.:(then move
Usersicon usage or pick another icon since Contacts usesUsers— e.g.Building/Boxes)