Skip to content

Commit 467d4bf

Browse files
committed
Re-enable webhooks sidebar link in project dashboard
1 parent e8a25d7 commit 467d4bf

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/components/ProjectSidebarLayout.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import { FullWidthSidebarLayout } from "@/components/blocks/SidebarLayout";
33
import { Badge } from "@/components/ui/badge";
44
import {
5+
BellIcon,
56
BookTextIcon,
67
BoxIcon,
78
CoinsIcon,
@@ -94,17 +95,16 @@ export function ProjectSidebarLayout(props: {
9495
icon: NebulaIcon,
9596
tracking: tracking("nebula"),
9697
},
97-
// Commented until we solve the scrolling issue
98-
// {
99-
// href: `${layoutPath}/webhooks`,
100-
// label: (
101-
// <span className="flex items-center gap-2">
102-
// Webhooks <Badge>New</Badge>
103-
// </span>
104-
// ),
105-
// icon: BellIcon,
106-
// tracking: tracking("webhooks"),
107-
// },
98+
{
99+
href: `${layoutPath}/webhooks`,
100+
label: (
101+
<span className="flex items-center gap-2">
102+
Webhooks <Badge>New</Badge>
103+
</span>
104+
),
105+
icon: BellIcon,
106+
tracking: tracking("webhooks"),
107+
},
108108
]}
109109
footerSidebarLinks={[
110110
{

0 commit comments

Comments
 (0)