Skip to content

Commit 91750ed

Browse files
committed
Temporarily remove webhooks sidebar link until scrolling issue is fixed (#7187)
## [Dashboard] Fix: Temporarily remove Webhooks from sidebar ## Notes for the reviewer Commented out the Webhooks section in the project sidebar until we resolve a scrolling issue. Also removed the unused BellIcon import. ## How to test Verify that the Webhooks option no longer appears in the project sidebar navigation. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Bug Fixes** - Temporarily removed the "Webhooks" link from the project sidebar to address a scrolling issue. The link and its badge are no longer visible. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 2fc083f commit 91750ed

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,7 +2,6 @@
22
import { FullWidthSidebarLayout } from "@/components/blocks/SidebarLayout";
33
import { Badge } from "@/components/ui/badge";
44
import {
5-
BellIcon,
65
BookTextIcon,
76
BoxIcon,
87
CoinsIcon,
@@ -95,16 +94,17 @@ export function ProjectSidebarLayout(props: {
9594
icon: NebulaIcon,
9695
tracking: tracking("nebula"),
9796
},
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-
},
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+
// },
108108
]}
109109
footerSidebarLinks={[
110110
{

0 commit comments

Comments
 (0)