We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e0a4ba commit bc4d4c3Copy full SHA for bc4d4c3
components/dashboard/src/Menu.tsx
@@ -249,7 +249,7 @@ export default function Menu() {
249
};
250
const isTeamLevelActive = !projectSlug && !isWorkspacesUI && !isPersonalSettingsUI && !isAdminUI && teamOrUserSlug;
251
const renderTeamMenu = () => {
252
- if (!teams || teams.length === 0) {
+ if (!hasIndividualProjects && (!teams || teams.length === 0)) {
253
return (
254
<div className="p-1 text-base text-gray-500 dark:text-gray-400 border-gray-800">
255
<PillMenuItem
0 commit comments