Skip to content

Commit 255a2b3

Browse files
authored
Merge pull request #87 from diggerhq/fix/remove-activity-tab-for-now
temporary removal of activity tab
2 parents 51f8a98 + cb768d0 commit 255a2b3

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/org/[organizationId]/(specific-organization-pages)/@sidebar/OrganizationSidebar.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { SwitcherAndToggle } from '@/components/SidebarComponents/SidebarLogo';
1111
import { FreeTrialComponent } from '@/components/SubscriptionCards';
1212
import { Skeleton } from '@/components/ui/skeleton';
1313
import { differenceInDays } from 'date-fns';
14-
import { Activity, FileText, FlagIcon, Home, Layers, MessageCircle, Users } from 'lucide-react';
14+
import { FileText, FlagIcon, Home, Layers, MessageCircle, Users } from 'lucide-react';
1515

1616
async function OrganizationSubscriptionSidebarCard({
1717
organizationId,
@@ -98,11 +98,11 @@ async function OrganizationSidebarInternal({
9898
href={`/org/${organizationId}/teams`}
9999
icon={<Users className="size-4 text-foreground" />}
100100
/>
101-
<SidebarLink
101+
{/* <SidebarLink
102102
label="Activity"
103103
href={`/org/${organizationId}/activity`}
104104
icon={<Activity className="size-4 text-foreground" />}
105-
/>
105+
/> */}
106106
<SidebarLink
107107
label="Docs"
108108
href={`https://docs.digger.dev/team/getting-started/gha-aws`}

src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/org/[organizationId]/team/[teamId]/(specific-team-pages)/@sidebar/TeamSidebar.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { SidebarLink } from '@/components/SidebarLink';
44
import { fetchSlimOrganizations } from '@/data/user/organizations';
55
import { getOrganizationOfTeam } from '@/data/user/teams';
66
import { cn } from '@/utils/cn';
7-
import { Activity, FileText, FlagIcon, Home, Layers, MessageCircle, Users } from 'lucide-react';
7+
import { FileText, FlagIcon, Home, Layers, MessageCircle, Users } from 'lucide-react';
88
import { Suspense } from 'react';
99

1010
async function TeamSidebarInternal({ organizationId }: { organizationId: string }) {
@@ -43,11 +43,11 @@ async function TeamSidebarInternal({ organizationId }: { organizationId: string
4343
href={`/org/${organizationId}/teams`}
4444
icon={<Users className="size-4 text-foreground" />}
4545
/>
46-
<SidebarLink
46+
{/* <SidebarLink
4747
label="Activity"
4848
href={`/org/${organizationId}/activity`}
4949
icon={<Activity className="size-4 text-foreground" />}
50-
/>
50+
/> */}
5151
<SidebarLink
5252
label="Docs"
5353
href={`https://docs.digger.dev/team/getting-started/gha-aws`}

src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/@sidebar/ProjectSidebar.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { fetchSlimOrganizations } from '@/data/user/organizations';
55
import { getSlimProjectById, getSlimProjectBySlug } from '@/data/user/projects';
66
import { cn } from '@/utils/cn';
77
import { projectSlugParamSchema } from '@/utils/zod-schemas/params';
8-
import { Activity, ArrowLeft, FileText, FlagIcon, Layers, MessageCircle, Users } from 'lucide-react';
8+
import { ArrowLeft, FileText, FlagIcon, Layers, MessageCircle, Users } from 'lucide-react';
99
import { Suspense } from 'react';
1010

1111
async function ProjectSidebarInternal({ projectId, projectSlug }: { projectId: string; projectSlug: string }) {
@@ -47,11 +47,11 @@ async function ProjectSidebarInternal({ projectId, projectSlug }: { projectId: s
4747
href={`/org/${organizationId}/teams`}
4848
icon={<Users className="size-4 text-foreground" />}
4949
/>
50-
<SidebarLink
50+
{/* <SidebarLink
5151
label="Activity"
5252
href={`/org/${organizationId}/activity`}
5353
icon={<Activity className="size-4 text-foreground" />}
54-
/>
54+
/> */}
5555
<SidebarLink
5656
label="Docs"
5757
href={`https://docs.digger.dev/team/getting-started/gha-aws`}

0 commit comments

Comments
 (0)